-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
109 lines (93 loc) · 1.58 KB
/
index.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
body {
background-color: #fff;
color: #333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
margin: 0 30px;
}
p {
margin: 0 0 10px;
}
a {
color: #337ab7;
text-decoration: none;
}
a:focus, a:hover {
color: #23527c;
text-decoration: underline;
}
h1, h2 {
margin-bottom: 10px;
margin-top: 20px;
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
header {
text-align: center;
}
h1 {
font-size: 36px;
}
#subtitle {
color: #777;
font-size: 23px;
font-weight: 400;
line-height: 1;
margin-top: 13px;
}
#authors-affiliations {
margin-bottom: 40px;
text-align: center;
}
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%, 100% {
transform: rotate(0)
}
20%, 60% {
transform: rotate(-25deg)
}
40%, 80% {
transform: rotate(10deg)
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
h2 {
font-size: 30px;
}
pre {
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
color: #333;
display: block;
font-size: 13px;
line-height: 1.42857143;
margin: 0 0 10px;
padding: 10px;
word-break: break-all;
word-wrap: break-word;
}
pre, code {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
pre code {
background-color: transparent;
border-radius: 0;
color: inherit;
font-size: inherit;
padding: 0;
white-space: pre-wrap;
}