forked from TheCodingDojo/webFun_css_flex_navbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (49 loc) · 913 Bytes
/
style.css
File metadata and controls
49 lines (49 loc) · 913 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
div{
background-color:white;
align-items: center;
padding: 50px;
}
.center-box{
background-color: blue;
margin: 50px;
display: flex;
justify-content: center;
justify-items: center;
}
.center-item{
background-color: burlywood;
}
.container {
background-color: rgb(32, 173, 255);
display: flex;
justify-content: start;
margin: 50px;
padding: 20px;
}
img{
margin: 40px;
}
h1{
color: white;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 70px;
margin-left: 80px;
}
ul, li{
display:inline;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 50px;
margin-left: 100px;
}
ul, li, a{
color: white;
text-decoration: none;
}