-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabs.css
98 lines (83 loc) · 1.32 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
}
body {
align-items: center;
display: flex;
background: #f7f8f8;
color: #252525;
font-family: "Trebuchet MS", sans-serif;
}
p {
margin-bottom: 10px;
}
h3 {
margin-bottom: 10px;
}
input {
border-radius: 2px;
border: 1px solid rgba(187, 187, 187, 0.5);
box-shadow: none;
font-family: "Trebuchet MS", sans-serif;
font-size: 18px;
margin: 5px auto 10px;
padding: 10px;
transition: all 0.3s ease;
width: 100%;
}
input:focus {
border-color: #bbb;
outline: none;
}
input.filled {
border: 1px solid rgba(255, 0, 153, 0.6);
}
.content {
margin: 0 auto;
max-height: 100%;
max-width: 720px;
padding: 20px 0;
}
.tabs-list {
list-style: none;
margin-bottom: 10px;
}
.tabs-item {
border: 1px solid #F09;
cursor: pointer;
float: left;
margin-right: -1px;
padding: 10px 15px;
transition: all 0.3s ease;
user-select: none;
}
.tabs-item:hover {
background: rgba(255, 0, 153, 0.6);
color: #FFF;
}
.tabs-item.active {
background: #F09;
color: #FFF;
}
.tabs-item.disabled {
background: #fff;
color: #bcbcbc;
cursor: default;
}
.tab-result,
.tab-content {
clear: both;
display: none;
line-height: 1.5;
padding: 10px 0;
}
.tab-result.active,
.tab-content.active {
display: block;
}