-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (55 loc) · 1.17 KB
/
style.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
@import "/components/avatar/avatar.css";
@import "/components/alert/alert.css";
@import "/components/button/button.css";
@import "/components/badge/badge.css";
@import "/components/common.css";
@import "/components/cards/cards.css";
@import "/components/image/image.css";
@import "/components/input/input.css";
@import "/components/modal/modal.css";
@import "/components/snackbar/snackbar.css";
@import "/components//list/list.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap');
*{
padding:0;
margin: 0%;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
body{
font-family: 'Montserrat', sans-serif;
}
img{
max-width: 100%;
}
nav{
background: #0082e6;
height: 80px;
width: 100%;
}
label.logo{
color:white;
font-size:35px;
line-height: 80px;
padding: 0 100px;
font-weight: bold;
}
nav ul{
float: right;
margin-right: 20px;
}
nav ul li{
display: inline-block;
line-height: 80px;
margin:0 5px;
}
nav ul li a{
color: white;
font-size: 17px;
text-transform: uppercase;
}
a.active,a:hover{
background: #1b9bff;
transition: .5s;
}