-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (63 loc) · 1.06 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
.tabs *{
transition : all 0.2s ease 0s;
padding: 0;
margin: 0;
border: 0;
}
body {
padding: 0;
margin: 0;
font-family: verdana;
line-height: 2;
letter-spacing: 1.5px;
font-size: 15px;
background: linear-gradient(90deg, rgba(193,255,236,1) 0%, rgba(254,255,193,1) 100%);
}
.tabs .clear {
clear: both;
}
.tabs {
padding: 20px;
}
.tabs .tabheads {
background: #ddd;
border-radius: 50px;
padding: 10px;
}
.container {
background: #fff;
width: 90%;
margin: 50px auto 50px auto;
border-radius: 50px;
}
.tabs .tabheaditem {
width: 120px;
margin-left: 10px;
background-size: 70% 70%;
float: left;
text-align: center;
border-radius: 20px;
cursor: pointer;
user-select: none;
}
.tabs .tabheaditem:hover {
background:#fdfdfd;
}
.tabs .tabbody {
position: relative;
height: 500px;
}
.tabs .tabpage {
position: absolute;
top: 20px;
width: 100%;
opacity: 0;
z-index: -1;
}
.tabs .show {
opacity: 1.0;
z-index: 1000;
}
.tabs .active {
background:#fff;
}