28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
.justify {
text-align: justify;
}
.hidden {
display: none;
}
.clearer {
clear: both;
font-size: 0;
height: 0;
}
body {
background: #FFFFFF url(../img/lines.png);
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
.justify {
text-align: justify;
}
.hidden {
display: none;
}
.clearer {
clear: both;
font-size: 0;
height: 0;
}
body {
background: #FFFFFF url(../img/lines.png);
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
input[placeholder]#verb {
color: hsl(0, 0%, 70%);
}
#conjugate {
display: inline-block;
padding: 7px 10px;
font-size: 20px;
background-color: hsl(0, 30%, 30%);
color: hsl(0, 30%, 60%);
border-radius: 3px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
cursor: pointer;
}
#conjugate:hover {
background-color: hsl(0, 60%, 40%);
color: hsl(0, 60%, 70%);
box-shadow: 0 0 2px hsl(0, 60%, 50%);
}
#options {
margin: 10px 0 0 5px;
font-size: 16px;
text-align: center;
}
|
|
|
|
|
|
|
|
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
input[placeholder]#verb {
color: hsl(0, 0%, 70%);
}
#conjugate {
display: inline-block;
padding: 7px 10px;
font-size: 18px;
background-color: hsl(210, 30%, 50%);
color: hsl(210, 30%, 80%);
border-radius: 3px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
cursor: pointer;
}
#conjugate:hover {
background-color: hsl(210, 60%, 40%);
color: hsl(210, 60%, 90%);
box-shadow: 0 0 2px hsl(210, 60%, 50%);
}
#options {
margin: 10px 0 0 5px;
font-size: 16px;
text-align: center;
}
|