-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (70 loc) · 1.28 KB
/
style.css
File metadata and controls
80 lines (70 loc) · 1.28 KB
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
75
76
77
78
79
80
@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@300;400;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Roboto;
}
/* global */
.row {
width: 100%;
height: 100%;
max-width: 1280px;
margin: 0 auto;
}
:root {
--primary: #ff4d30;
}
a {
color: black;
text-decoration: none;
}
button {
cursor: pointer;
}
/* navigaition */
nav {
height: 115px;
width: 100%;
}
.nav__row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 30px;
}
.nav__img {
width: 145px;
}
.nav__links {
display: flex;
gap: 29px;
}
.nav__link {
font-size: 18px;
font-weight: bold;
transition: 200ms ease;
}
.nav__link:hover {
color: var(--primary);
}
.nav__buttons {
display: flex;
align-items: center;
gap: 24px;
}
.nav__button__register {
background-color: var(--primary);
border: none;
border-radius: 4px;
color: white;
padding: 12px 20px;
font-weight: bold;
font-size: 18px;
box-shadow: 0 10px 15px 0 rgba(255, 83, 48, 0.35);
transition: 400ms ease;
}
.nav__button__register:hover {
box-shadow: 0 10px 15px 0 rgba(255, 83, 48, 0.5);
background-color: #fa3719;
}