-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
88 lines (74 loc) · 1.21 KB
/
main.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
html {
background: Black;
-webkit-font-smoothing: antialiased;
}
body {
color: #545454;
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0 auto;
max-width: 960px;
padding: 2em 2em 4em;
}
h2 {
color: white;
font-weight: 600;
line-height: 1.3;
}
h2 {font-weight: 400;
margin-top: 1.3em;
}
a {
color: white;
text-decoration: none;
font-style: oblique;
}
a:hover {
color: deepskyblue;
}
b, strong {
font-weight: 600;
}
samp {
display: none;
}
img {
animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
background: transparent;
border: 10px solid rgba(0, 0, 0, 0.12);
border-radius: 4px;
display: block;
margin: 1.3em auto;
max-width: 95%;
}
#wrap {
clear:both;
}
#wrap:after {
content: "";
display: table;
clear: both;
}
section{
color: lightgray;
float:left;
width:70%;
}
aside{
color: lightgray;
float:left;
font-size: 13px;
width:20%;
margin-right:9%;
}
@keyframes colorize {
0% {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
100% {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
}