-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (80 loc) · 1.32 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
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
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
*{
margin: 0px;
padding:0px;
}
body{
font-family: 'Roboto Condensed';
}
.banner{
width: 100vh;
height: 100vh;
overflow: hidden;
display: inline;
justify-content: center;
align-items: center;
}
.banner video {
position: fixed;
top: 0;
left: 0;
object-fit: cover;
width: 100%;
}
.banner .content{
position: relative;
z-index: 1;
margin: 0;
display: flex;
top: none;
left: 200px;
right: 200px;
}
.nav_tabs{
width:980px;
height: 600px;
margin: 10px auto;
position: relative;
}
.nav_tabs ul{
list-style: none;
}
.nav_tabs ul li{
float: left;
}
.tab_label{
display: block;
width: 156px;
background-color:#0e0e0e;
padding: 20px;
color:#FFFACD;
font-size: 20px;
cursor: pointer;
text-align: center;
}
.nav_tabs .rd_tab {
display:none;
position: absolute;
}
.nav_tabs .rd_tab:checked ~ label {
background-color: #dd65a7;
}
.tab-content{
border-top: solid 5px #dd65a7;
display: none;
position: absolute;
height: 600px;
width: 800x;
left: 0;
}
.rd_tab:checked ~ .tab-content{
display: block;
}
.tab-content h2{
padding: 10px;
color: #010211;
}
.tab-content article{
padding: 10px;
color: #010211;
}