-
Notifications
You must be signed in to change notification settings - Fork 0
/
lev2.css
67 lines (64 loc) · 983 Bytes
/
lev2.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
*{
margin: 0px;
padding: 0px;
}
:root{
--navbar-height:50px;
}
#navbar{
display:flex;
background-color:chartreuse;
height:var(--navbar-height);
position:sticky;
}
.trf{
height:50px;
width:100px;
}
#nav ul{
display:flex;
list-style:none;
}
.lap{
text-decoration:none;
}
#nav ul li{
margin:5px 20px;
padding:2px;
}
#nav ul li a{
font-size: 2rem;
}
#box{
display:flex;
flex-direction:column;
}
.raj{
text-align: center;
margin-top: 1px;
color: rgb(144, 6, 100);
}
.box-btn{
height: 20px;
width: 100px;
margin-left: 70px;
margin:auto;
font-size:15px;
border-radius: 30px;
color: blue;
}
#box::before{
content:"";
background: url("https://source.unsplash.com/collection/190727/1600x900");
position: absolute;
height: 93.25%;
width: 100%;
z-index:-1;
opacity: 0.7;
}
.search{
margin-top: 200px;
}
.box-btn:hover{
background-color: aqua;
}