-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 957 Bytes
/
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
* {
font-family: 'Poppins', sans-serif;
}
body {
padding: 0px;
margin: 0px;
}
.nav {
background-color: #c5c6d0;
height: 60px;
width: calc(100% - 40px);
display: flex;
gap: 20px;
align-items: center;
padding: 0px 20px;
}
.logo {
font-size: 16px !important;
font-weight: 600;
}
.nav > a {
text-decoration: none;
color: #000;
font-size: 14px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh - 60px);
}
.container img {
width: 300px;
}
.container {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 50px;
width: 800px;
max-width: 800px;
}
button {
background-color: #c5c6d0;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
}