-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
126 lines (107 loc) · 2.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
img {
max-width: 100%;
box-sizing: content-box;
background-color: #fff;
border-style: none;
}
.avatar {
text-align: center;
}
.avatar img{
width: 300px;
height: 300px;
float: right;
padding-left: 20px;
transition: all .8s;
}
@media screen and (max-width: 600px) {
.avatar img{
width: 200px;
height: 200px;
padding-left: 0;
border-radius: 50%;
float: none;
margin: auto;
}
}
.container {
max-width: 1012px;
margin-right: auto;
margin-left: auto;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
line-height: 1.5;
word-wrap: break-word;
padding-right: 16px !important;
padding-left: 16px !important;
margin-top: 32px !important;
margin-bottom: 32px !important;
}
a {
color: #0366d6;
text-decoration: none;
}
a {
background-color: transparent;
}
a:hover {
text-decoration: underline;
}
a:active, a:hover {
outline-width: 0;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 24px;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.25
}
h1 .octicon-link, h2 .octicon-link, h3 .octicon-link, h4 .octicon-link, h5 .octicon-link, h6 .octicon-link {
color: #1b1f23;
vertical-align: middle;
visibility: hidden
}
h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor, h5:hover .anchor, h6:hover .anchor {
text-decoration: none
}
h1 {
padding-bottom: 0.3em;
font-size: 2em;
border-bottom: 1px solid #eaecef
}
h2 {
padding-bottom: 0.3em;
font-size: 1.5em;
border-bottom: 1px solid #eaecef
}
h3 {
font-size: 1.25em
}
h4 {
font-size: 1em
}
h5 {
font-size: 0.875em
}
h6 {
font-size: 0.85em;
color: #6a737d
}
hr {
box-sizing: content-box;
overflow: hidden;
height: .25em;
padding: 0;
margin: 24px 0;
background-color: #e1e4e8;
border: 0;
}
hr::before {
display: table;
content: ""
}
hr::after {
display: table;
clear: both;
content: ""
}