-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabs.css
131 lines (122 loc) · 2.82 KB
/
tabs.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#main-tabs {
/* over-riding prose */
margin-bottom: 0;
margin-left: 0px;
margin-right: 0px;
list-style: none;
width: calc(100% - 10px);
}
#main-tabs li {
box-sizing: initial !important;
width: 50%;
}
ul.tabs {
width: 390px;
height: 80px;
margin: 0 auto;
list-style: none;
overflow: hidden;
padding: 0;
}
ul.tabs li {
float: left;
width: 130px;
}
ul.tabs li a {
position: relative;
display: block;
height: 30px;
margin-top: 40px;
padding: 10px 0 0 0;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
text-align: center;
text-decoration: none !important;
color: #545f60 !important; /* over-ride prose */
background: #6edeef;
-webkit-box-shadow: 8px 12px 25px 2px rgba(0,0,0,0.4);
-moz-box-shadow: 8px 12px 25px 2px rgba(0,0,0,0.4);
box-shadow: 8px 12px 25px 2px rgba(0,0,0,0.4);
border: 0px solid #000000;
-webkit-transition: padding 0.2s ease, margin 0.2s ease;
-moz-transition: padding 0.2s ease, margin 0.2s ease;
-o-transition: padding 0.2s ease, margin 0.2s ease;
-ms-transition: padding 0.2s ease, margin 0.2s ease;
transition: padding 0.2s ease, margin 0.2s ease;
}
.tabs li:first-child a {
z-index: 3;
-webkit-border-top-left-radius: 8px;
-moz-border-radius-topleft: 8px;
border-top-left-radius: 8px;
}
.tabs li:nth-child(2) a {
z-index: 2;
}
.tabs li:last-child a {
z-index: 1;
-webkit-box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
-webkit-border-top-right-radius: 8px;
-moz-border-radius-topright: 8px;
border-top-right-radius: 8px;
}
ul.tabs li a:hover {
/* override prose */
color: #545f60 !important;
margin: 35px 0 0 0;
padding: 10px 0 5px 0;
}
ul.tabs li a.active {
margin: 30px 0 0 0;
padding: 10px 0 10px 0;
background: #545f60;
color: #6edeef !important;
/*color: #ff6831;*/
z-index: 4;
outline: none;
}
ul.tabs li a.active:hover {
/* override prose */
color: #6edeef !important;
}
.group:before,
.group:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.group:after {
clear: both;
}
#content {
color: rgb(240,240,240) !important;
height: calc(100vh - 25px - 25px - 130px - 90px);
margin: 0 auto;
background: #545f60;
-webkit-box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
-moz-box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
box-shadow: 2px 8px 25px -2px rgba(0,0,0,0.3);
-webkit-border-bottom-right-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
-moz-border-radius-bottomright: 8px;
-moz-border-radius-bottomleft: 8px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 8px;
overflow-y: scroll !important;
padding: 10px;
}
p {
font-family: 'Open Sans', sans-serif;
padding: 15px 5px;
color: #ffffff;
line-height: 26px;
font-size: 18px;
margin: 0;
}
/*
@media (max-width: 700px) {
#main-tabs {
}
}
*/