-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
117 lines (116 loc) · 1.94 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
html, body {
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0;
}
body {
background-image: url("images/papertexture.jpg");
background-size: fill;
}
.top-row {
min-width: 100%;
min-height: 250px;
background-image: url("images/coachtags.png");
background-position: top;
background-size: auto 100%;
background-repeat: repeat;
margin-bottom: 20px;
}
h2 {
font-family: 'EB Garamond', serif;
font-style: italic;
font-weight: 800;
margin-left: 20px;
margin-bottom: 0;
}
form {
margin: 0 20px;
}
input {
min-width: 300px;
height: 34px;
vertical-align: top;
border: 1px black solid;
padding-left: 4px;
-webkit-appearance: none;
border-radius: 0;
}
button {
height: 34px;
width: 65px;
color: #fff;
background-color: #000;
border: 1px black solid;
padding: 0;
}
input, input::placeholder, button {
font-family: 'EB Garamond', serif;
font-style: italic;
font-size: 18px;
font-weight: 400;
}
input::placeholder {
vertical-align: middle;
}
ul {
padding-left: 20px;
}
li, p {
vertical-align: top;
list-style-type: none;
font-family: 'Lato', sans-serif;
}
li p {
margin-top: 24px;
}
#loadmore {
min-width: 100px;
visibility: hidden;
display: block;
margin: 20px auto;
}
.screen-reader-only {
position: absolute;
height: 1px;
width: 1px;
clip: rect(1px 1px 1px 1px);
clip: rect(1px,1px,1px,1px);
clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
overflow: hidden !important;
}
@media (max-width: 768px) {
.top-row {
min-height: 41vw;
background-size: 105% auto;
background-repeat: no-repeat;
}
input {
min-width: 250px;
margin-top: 5px;
}
button {
margin-top: 5px;
}
li {
width: 100%;
}
img {
width: 95%;
}
}
@media (min-width: 768px) {
li {
display: inline-block;
width: 50%;
}
img {
width: 85%;
}
}
@media (min-width: 960px) {
li {
width: 33.3%;
}
}