-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalex.css
86 lines (71 loc) · 1.24 KB
/
alex.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
76
77
78
79
80
81
82
83
84
85
86
body {
margin: 60px auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
background-color: #ffffff;
color: #484848;
width: 580px;
font-size: 18px;
line-height: 26px;
}
header {
margin-top: 30px;
margin-bottom: 20px;
}
header a {
color: #484848;
text-decoration: none;
border-bottom: 1px solid #99989285;
}
header a:visited {
color: #484848;
}
header a:hover {
border-bottom: 1px dotted #999892;
}
h1 {
font-size: 38px;
line-height: 42px;
font-weight: 600;
margin-bottom: 20px;
}
img.avatar {
background-size: 100%;
display: block;
height: 80px;
overflow: hidden;
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
width: 80px;
margin-right: 15px;
}
pre {
font-size: 15px;
white-space: pre;
word-wrap: normal;
overflow: auto;
width: auto;
}
@media screen and (max-width: 580px) {
body {
margin: 10px auto;
padding: 0 20px 0 20px;
width: auto;
word-wrap: break-word;
}
img {
max-width: 100%;
width: auto;
height: auto;
}
img.avatar {
height: 110px;
width: 110px;
}
}
a {
color: #484848;
}
p {
margin: 0 0 2ex 0;
}