-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
74 lines (61 loc) · 1.43 KB
/
styles.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
68
69
70
71
72
73
74
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
body {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: gray;
background-image: url("images/WIN_20210729_13_50_20_Pro.jpg");
height: 500px; /* You must set a specified height */
background-position: center; /* Center the image */
background-position: top;
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
--main-bg-color: #24252A;
}
li, a, button, header, .logo{
background-color: var(--main-bg-color);
}
li, a, button {
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
text-decoration: none;
}
header {
display: flex;
justify-content: flex-start;
padding: 30px 10%;
}
.logo {
border-color: cadetblue;
border: 5px;
border-radius: 50px;
cursor: pointer;
margin-right: auto;
}
.nav_links {
list-style: none;
}
.nav_links li {
display: inline-block;
padding: 0px 20px;
}
.nav_links li a {
transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
color: #0088a9;
}
button {
margin-left: 20px;
padding: 9px 25px;
background-color: rgba(0,136,169,1);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover {
background-color: rgba(0,136,169,0.8);
}