This repository was archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (76 loc) · 1.56 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
/* custom style
========================================================================== */
body {
background: #f2f2f2;
font-family: 'Open Sans', sans-serif;
padding: 10px 0 25px;
}
h2 {
margin: 20px 0 30px;
}
/* layout
========================================================================== */
.container {
max-width: 960px;
padding: 0 20px;
}
.title {
font-size: 3em;
margin-bottom: 20px;
}
.box {
background: #fff;
border-radius: 3px;
margin-bottom: 15px;
padding: 10px 20px;
}
.heading {
font-size: 2.25em;
margin: 10px 0 5px
}
.heading span {
color: #ddd;
margin-right: 15px;
text-decoration: none;
}
.text {
font-size: 1.25em;
margin: 15px 0;
}
.view .column,
.view .columns {
background: #f2f2f2;
border-radius: 3px;
font-size: 0.750em;
font-weight: 600;
margin-bottom: 5px;
padding: 5px;
text-align: center;
text-transform: uppercase;
}
/* link to source on github
========================================================================== */
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
.svg {
fill: #2197f4;
color: #fff;
position: fixed;
top: 0;
border: 0;
right: 0;
}
@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;
}
}