forked from jaiyankargupta/OCD-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavbar.css
More file actions
35 lines (35 loc) · 721 Bytes
/
navbar.css
File metadata and controls
35 lines (35 loc) · 721 Bytes
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
#navbar{
border: 3px groove black;
height: 80px;
width: 100%;
background-color: rgb(155, 223, 225);
color: black;
margin: 20px;
display: flex;
column-gap: 100px;
justify-content: space-between;
padding-top: 40px;
}
a{
text-decoration: none;
color: black;
margin-left: 5px;
font-size: 30px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.element{
display: inline-block;
margin-left: 10;
}
@media (max-width:768px) {
#navbar{
flex-direction: column;
height: auto;
}
.element{
margin-left: 20px;
}
a{
font-size: 20px;
}
}