-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
35 lines (33 loc) · 838 Bytes
/
main.scss
File metadata and controls
35 lines (33 loc) · 838 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
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
font-family: "Raleway", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
body{
background-color: #0d0d0f;
color: #fefefe;
margin : 25px 20px 0px 20px ;
.head-container{
height :max-content;
border-bottom: 1px solid #fefefe;
font-size: 30px;
.nav{
display:flex;
justify-content:space-around;
.right{
display: flex;
justify-content: space-between;
width: 15%;
.name{
font-size: 30px;
font-weight: 500;
}
}
}
}
.main{
display: flex;
}
}