-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (44 loc) · 780 Bytes
/
main.css
File metadata and controls
53 lines (44 loc) · 780 Bytes
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
body {
background-color: #c2d7d0;
}
.content {
font-family: sans-serif;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
#search-form {
width: 60%;
margin: 0 auto;
}
#search-form input {
display: block;
width: 100%;
padding: 0.4em;
border: 1px solid #5f9595;
font-size: 1.4em;
margin-bottom: 50px;
margin-top: 10px;
}
#search-form .controls {
margin: 1em auto;
}
#search-form .query-error {
font-size: 0.8em;
color: red;
}
article {
border-bottom: 1px solid #ccc;
font-family: "Georgia", serif;
font-size: large;
}
article header h2 {
text-transform: capitalize;
}
article section p {
line-height: 1.6em;
white-space: pre-wrap;
}
article section mark {
background-color: #8fc8c8;
}