-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (101 loc) · 1.55 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
@import 'https://fonts.googleapis.com/css?family=Roboto:300,400,500';
body {
margin: 0 auto;
padding: 4em 1em;
max-width: 50em;
line-height: 1.5;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
color: #555;
}
#header {
display: flex;
justify-content: space-between;
align-items: center;
}
#header #profile {
height: 9em;
width: 9em;
border-radius: 50%;
transition: box-shadow 0.2s linear;
}
#header #profile:hover {
box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}
#header #title h1, #header #title h2{
border-top: none;
margin-top: 0;
padding-top: 0;
margin-bottom: 0;
}
h1,
h2,
h3,
h4,
strong {
color: #333333;
}
h2 {
padding-top: 1em;
margin-top: 1em;
}
h3 {
margin-bottom: 0.5em;
}
.flex-vertical-center {
display: flex;
align-items: center;
}
code,
pre {
background: #EEEEEE;
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
border-radius: 3px;
}
code::before,
code::after {
letter-spacing: -0.2em;
content: "\00a0";
}
h2 {
border-top: solid 1px #EEEEEE;
}
#refresh-link {
height: 1em;
vertical-align: middle;
}
.ion-icon {
font-size: 1.5em;
margin-left: 0.5em;
margin-right: 0.5em;
color: #333333;
}
:target {
animation: 1.5s fadeOut ease-out;
}
@keyframes fadeOut {
from {
background: blanchedalmond;
}
to {
background: none;
}
}
.info, .title {
display: flex;
justify-content: space-between;
}
.only-print {
display: none;
}
@media print
{
.no-print, .no-print *
{
display: none;
}
.only-print, .only-print * {
display: block;
}
}