-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·139 lines (121 loc) · 3.32 KB
/
style.css
File metadata and controls
executable file
·139 lines (121 loc) · 3.32 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.page {
margin: 20px 0
}
.wrapper {
max-width: 1160px;
margin: 0 auto;
position: relative;
padding: 0 20px;
min-height: 600px;
}
.header {
float: left;
width: 100%;
}
.content_wrapper {
float: left;
width: 100%;
}
.content {
margin-right: 240px;
clear: both;
overflow: auto;
min-height: 600px;
}
.sidebar_wrapper {
position: relative;
float: right;
background: #2c3e50;
background: rgba(44, 62, 80, 0.4);
}
.sidebar {
width: 240px;
margin-left: -240px;
float: right;
overflow: hidden;
background: #2c3e50;
background: rgba(44, 62, 80, 0.4);
}
.footer {
float: left;
width: 100%;
background: rgba(0, 0, 0, 0.05);
}
.chart {
height: 400px;
width: 80%;
}
.header .title {
font-size: 60px;
font-weight: bold;
text-align: right;
background: rgba(0, 0, 0, 0.05);
padding-top: 60px;
padding-bottom: 30px;
padding-right: 30px;
}
.footer p {
padding-left: 30px;
padding-right: 30px;
}
.content .title {
font-size: 40px;
font-weight: bold;
border-bottom: 3px solid #000000;
padding-top: 60px;
padding-bottom: 30px;
}
h1 {
background: rgba(0, 0, 0, 0.05);
}
h2 {
border-bottom: 1px dashed #000000;
}
.category {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 30px;
}
.category h2 {
border-bottom: 1px dotted #000000;
}
/* copy from http://www.bestcssbuttongenerator.com/#/12 */
.button {
-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;
-webkit-box-shadow:inset 0px 1px 0px 0px #54a3f7;
box-shadow:inset 0px 1px 0px 0px #54a3f7;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
background-color:#007dc1;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #124d77;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:13px;
padding:6px 6px;
text-decoration:none;
text-shadow:0px 1px 0px #154682;
}
.button:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
background-color: #0061a7;
}
.button:active {
position: relative;
top: 1px;
}