-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (87 loc) · 1.89 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
@media all {
body {
color: #F7FFF7;
background-color: #292F36;
}
.tabs {
padding-top: 3%
}
.tab-list {
padding-left: 0;
padding-right: 0;
}
.tab-list > li {
padding: 0 3%;
border-left: 1px solid #6c6c6c;
text-align: center;
float: left;
cursor: pointer;
}
.tab-list > li:first-child {
border-left: none;
}
.tab-list > li:hover > h4,
.tab-list > li.active > h4 {
color: #4ECDC4;
}
.tab-list > li > h4 {
font-weight: 100;
display: block;
transition: all 500ms ease;
}
.tabs-content { opacity: 0; display: none; margin: 3em 0; opacity 1s ease-out; }
.tabs-content.active { opacity: 1; display: block; }
/* Tab 1 Set */
.tabs-content#content-select-1 > div {
padding: 0 4em;
}
.tabs-content > div > i {
font-size: 65px;
float: left;
display: block;
margin-top: 10px;
}
.tabs-content > div > article {
float: right;
width: 80%;
}
.tabs-content > div > article h3 {
font-weight: bold;
}
/* Bar Set Style */
.tab-header { margin: 0 0 1em; }
.tab-header h3 { font-size: 20px; text-transform: uppercase; }
.single-bar {
float: left;
text-align: center;
padding-right: 0;
padding-left: 0;
}
.single-bar p { text-align: center; }
.single-bar p.bar-place { margin: 1em 0; }
.bar-container {
border-bottom: 1px solid #fff;
padding: 0 1em;
min-height: 280px;
position: relative;
}
.bar {
position: absolute;
overflow: hidden;
bottom: 0;
}
.bar:first-child { padding-left: 0; }
.bar-value {border: 1px solid #fff;
border-bottom: none;}
.bar1 { height: 150px; }
.bar2 { height: 245px; }
.bar3 { height: 110px; }
.bar4 { height: 95px; }
.bar5 { height: 180px; }
.bar6 { height: 50px; }
.bar-highlight {
background-color: #4ECDC4;
border-color: #4ECDC4;
}
.bar-highlight:hover { opacity: .9; }
}