-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
executable file
·110 lines (98 loc) · 1.73 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
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
img + em {
color: #aaa;
}
caption {
color: #aaa;
}
.center-img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.center-text {
text-align: center;
}
.active-banner {
opacity: 1.0;
filter: alpha(opacity=100); /* For IE8 and earlier */
}
.active-banner:hover {
opacity: 0.5;
filter: alpha(opacity=70); /* For IE8 and earlier */
}
.footer-logo {
width: 87px;
height: auto;
}
.github-logo {
width: 32px;
height: auto;
}
.logo-404 {
width: 70%;
height: auto;
margin-top: 25vh;
}
.info {
width: 70%;
height: auto;
margin-top: 5vh;
font-family: "Consolas", 'sans-serif';
font-size: 1.5em;
color: #58585A;
}
/* scroll-top button */
#scroll-top {
position: fixed;
bottom: 40px;
right: 7%;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.17);
width: 50px;
height: 50px;
display: block;
text-decoration: none;
-webkit-border-radius: 35px;
-moz-border-radius: 35px;
border-radius: 35px;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#scroll-top i {
color: #fff;
margin: 0;
position: relative;
left: 0px;
top: 13px;
font-size: 19px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#scroll-top:hover {
background: rgba(0, 0, 0, 0.7);
}
#scroll-top:hover i {
color: #fff;
top: 5px;
}