-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (72 loc) · 1.26 KB
/
style.css
File metadata and controls
82 lines (72 loc) · 1.26 KB
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
body {
background: #E7AD99;
text-align: center;
font-family: Arial;
margin: 0px auto;
color: #D87A65;
font-size: 12px;
}
h1 {
color: #EFF1ED;
font-size: 65px;
}
h3 {
text-align: center;
font-size: 40px;
}
h4 {
margin: auto 80px;
text-align: left;
font-size: 20px;
}
.text {
margin: auto 150px;
text-align: left;
font-size: 15px;
}
/* Style the tab */
.tab {
width: 960px;
overflow: hidden;
background-color: #EFF1ED;
color: #EFF1ED;
margin: 0px auto;
display: inline-block;
}
/* Style the buttons that are used to open the tab content */
.tab button {
width: 120px;
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 0px;
transition: 0.3s;
color: #fff;
font-size: 18px;
background-color: #717744;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #5c692d;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #373D20;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 0px 12px;
border: 1px solid #ccc;
border-top: none;
animation: fadeEffect 1s;
color: #D87A65;
text-align: center;
font-size: 15px;
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}