-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
107 lines (87 loc) · 1.46 KB
/
main.css
File metadata and controls
107 lines (87 loc) · 1.46 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
/* ADD YOUR STYLES HERE */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.data-table {
width: 100%;
}
.data-table td, .data-table th {
padding: 10px;
border-bottom: 1px solid #bdbdbd;
}
.data-table tr:last-child td {
padding: 10px;
border-bottom: 0px;
}
.stats-row {
border-top: 1px solid #bdbdbd ;
border-bottom: 1px solid #bdbdbd;
}
.stats-cell {
padding: 15px;
}
.stat-num {
text-align: center;
font-size: 36px;
font-weight: bold;
}
.stat-note {
color: #B9CBDB;
font-size: 12px;
}
.data-chart {
width: 100%;
}
.data-bar {
background-color: #599EDE;
margin: 0 1%;
color: #FFF;
font-size: 14px;
padding: 3px;
-webkit-border-radius: 3px;
}
.data-chart th {
width: 12%;
text-align: right;
}
.thumbnail {
display: inline-block;
padding-right: 1%;
vertical-align: top;
max-width: 10%;
}
.thumbnail-text {
display: inline-block;
width: 90%;
}
/*/* CSS FORMATTING FOR THE LIGHT BOX*/
/*.light-box {
margin: 100px auto;
background-color: #FFFFFF;
-webkit-border-radius: 5px;
border: 1px solid black;
overflow: hidden;
padding: 2%;
width: 70%;
z-index: 1002;
}
.light-box > div:last-child {
text-align: center;
float: right;
background-color: #ED818A;
width: auto;
padding: 1% 4%;
-webkit-border-radius: 5px;
color: #FFF;
}
.dark-back {
position: fixed;
background-color: rgba(0, 0, 0, .8);
z-index: 1001;
top: 0;
left: 0;
width: 100%;
height: 100%;
} */