forked from SrivastavArchit/hackfest-ki-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles1.css
57 lines (51 loc) · 828 Bytes
/
styles1.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#wrapper{
height:100vh;
overflow-y: auto;
overflow-x: hidden;
}
.container{
width: 1200px;
margin: 0 auto;
}
.navbar{
background-color: cadetblue;
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1rem;
}
.logo{
width: 60px;
}
.nav-items{
display: flex;
gap: 2rem;
padding:0 4rem;
}
.nav-items div{
font-size: 20px;
font-weight: 500;
}
a{
text-decoration: none;
}
.nav-items div a{
color: black;
}
.nav-items div:hover{
font-weight: bold;
transition: 0.7s;
}
#myVideo {
position:static;
right: 0;
bottom: 0;
object-fit: cover;
min-width: 100%;
height: 60%;
}