forked from c-i-p-h-e-r/CS200-MinWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
55 lines (47 loc) · 783 Bytes
/
main.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
html {
font-family: 'Source Sans Pro', sans-serif;
font-size: larger;
font-weight: 300;
}
a {
text-decoration: none;
color: #1565c0;
}
a:hover {
color: #217ee7;
}
#content {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%) ;
text-align: center;
max-width: 520px;
padding: 32px;
line-height: 1.6em;
}
.avatar {
border-radius: 50%;
width: 150px;
}
.icons {
list-style-type: none;
font-size: xx-large;
padding: 0;
display: flex;
justify-content: space-between;
width: 80%;
max-width: 320px;
margin: 1em auto;
}
.icons li {
display: inline;
width: 42px;
}
.icons a {
color: black;
}
.icons a:hover {
color: #1565c0;
}