-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb_ss.css
More file actions
58 lines (49 loc) · 690 Bytes
/
web_ss.css
File metadata and controls
58 lines (49 loc) · 690 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
54
55
56
57
58
body {
text-align: center;
font-family: Georgia;
font-size: 18px;
font-weight: lighter;
padding: 10px;
margin: 0 auto;
max-width: 100%;
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
margin: 10px auto;
display: block;
}
a:link {
color: gray;
}
a:visited {
color: gray;
}
a:hover {
color: black;
}
h2 {
font-family: Georgia;
font-size: 18px;
margin: 15px 0 5px 0;
}
a {
display: inline-block;
padding: 6px;
text-decoration: none;
}
@media (max-width: 600px) {
body {
font-size: 22px;
padding: 15px;
}
h2 {
font-size: 22px;
margin-top: 20px;
}
a {
padding: 10px 5px;
margin: 2px 0;
}
}