-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathcustom.css
81 lines (69 loc) · 1.08 KB
/
custom.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
header {
padding: 8em 0;
}
header, footer {
color: white;
background: #448AFF;
background-image: url("background.png");
box-shadow: 0 0 10px rgba(0, 0, 0, 0.51);
}
h1.title {
font-size: 4em;
font-weight: bold;
}
pre {
background: #212121;
color: white;
}
header p {
font-size: 1.4em;
}
footer {
padding: 50px 0;
text-align: center;
font-size: 1.1em;
margin-top: 3em;
}
footer a {
color: white;
}
footer a:hover {
color: white;
}
.sidebar.left {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 270px;
background: #448AFF;
}
.sidebar.right {
top: 0;
right: 0;
bottom: 0;
width: 270px;
background: #448AFF;
}
.sidebar.bottom {
left: 0;
right: 0;
bottom: 0;
height: 270px;
background: #03A9F4;
}
.sidebar.top {
left: 0;
right: 0;
top: 0;
height: 270px;
background: #03A9F4;
}
.sidebars > .sidebar {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.64);
position: fixed;
color: white;
padding: 30px;
font-size: 2em;
text-align: center;
}