-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (64 loc) · 1.17 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
body {
background: black;
margin: 0;
}
.indieweb-contact {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background: black;
padding: 0 10px;
}
.indieweb-contact h2 {
text-align: center;
color: white;
font-weight: 100;
font-size: 30px;
margin: 40px 0;
letter-spacing: 2px;
}
.indieweb-contact ol {
padding: 22px 10px 18px;
margin: 0;
width: 100%;
max-width: 320px;
margin: 0 auto;
background: #4e4e50;
overflow: hidden;
list-style: none;
border-radius: 32px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.indieweb-contact li {
width: 33%;
text-align: center;
float: left;
}
.indieweb-contact a {
font-size: 11px;
font-weight: 100;
letter-spacing: 0.08em;
padding: 7px 0;
display: block;
color: white;
text-decoration: none;
}
.indieweb-contact a img {
border-radius: 13px;
overflow: hidden;
display: block;
margin: 0 auto 5px;
}
/*
mobile only
*/
@media only screen and (max-width: 768px) {
.indieweb-contact h2 {
font-weight: 200;
}
.indieweb-contact a {
font-weight: normal;
font-size: 12px;
letter-spacing: 0;
}
}