-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
46 lines (39 loc) · 759 Bytes
/
style3.css
File metadata and controls
46 lines (39 loc) · 759 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
36
37
38
39
40
41
42
43
44
45
46
:root {
--main-color: #d3ad7f;
--black: #13131a;
--bg: #010103;
--border: 0.1rem solid rgba(255,255,255, 0.3);
font-size: 10px;
}
* {
margin: 0;
padding: 0;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: 0.2 linear;
}
body{
background-color: var(--bg):
}
section {
padding: 3rem 2rem;
margin: 0 auto;
max-width: 1200px;
}
.header{
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 99;
border-bottom: var(--border);
}
.header section {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}