-
Notifications
You must be signed in to change notification settings - Fork 2
/
home_style.css
94 lines (84 loc) · 1.36 KB
/
home_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
94
.logo{
padding-top: 3px;
}
.navbar{
display: flex;
align-items: center;
padding-right: 30px;
padding-left: 30px;
}
.navbar li{
justify-content: center;
cursor: pointer;
color: black;
border: none;
transition: all .4s;
}
.navbar li:hover{
border-radius: 5px;
transform: translateY(-10px);
box-shadow: 0 7px 0 -2px #f85959,
0 15px 0 -4px #39a2db,
0 16px 10px -3px #39a2db;
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
}
nav ul li{
display: inline-block;
margin-right: 20px;
}
a{
text-decoration: none;
color: black;
}
p{
color: #555;
}
#set-img{
width: 30px;
height: 30px;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.banner{
width: 100%;
height: 100vh;
overflow: hidden;
}
.banner video{
position: absolute;
top: 0;
left: 0;
object-fit: cover;
width: 100%;
height: 100%;
}
.banner .content{
position: relative;
z-index: 1;
}
.countdown{
margin: 0 35%;
background: rgba(255, 255, 255, 0.2);
transform: translate(0,450%);
display: flex;
justify-content: space-around;
text-align: center;
}
.day,.hour,.minute,.second{
font-size: 3rem;
}
.container-minute{
padding: 0 5%;
background-color: #39a2db;
border: solid 1px black;
}