-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (52 loc) · 891 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body{
font-family: 'Montserrat', sans-serif;
}
.show{
display:block;
}
.hide{
display:none;
}
.not_active{
text-decoration:none;
}
.txt-center{
text-align: center;
}
.tabs-container{
width: 70%;
margin: 0 auto;
}
#tabs_link {
overflow: hidden;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f1f1f1;
}
#tabs_link a {
background-color: rgb(46, 62, 206);
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
color:#fff;
}
.tab_box {
padding: 6px 12px;
border: 1px solid #ccc;
border-radius: 0 0 10px 10px;
border-top: none;
}
.box_test1{
background-color: rgb(207, 235, 143);
}
.box_test2{
background-color: rgb(147, 211, 231);
}
.box_test3{
background-color: rgb(212, 188, 109);
}