-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (67 loc) · 1.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@font-face {
font-family: D-DIN-Bold;
src: url('fonts\D-DIN-Bold.otf');
}
html, body{
padding: 0;
margin: 0;
}
body {
background-color: #000;
color: aliceblue;
font-family:D-DIN-Bold,Arial,Verdana,sans-serif;
font-weight: 700;
}
a {
color: aliceblue;
}
svg{
fill: aliceblue;
}
header {
display: flex;
align-items: center;
justify-content: center;
padding: 30px 50px ;
max-width: 1400px;
margin: 0 auto;
margin-right: 20%;
height:40px;
}
header svg {
width:180px
}
header a.logo{
margin-right: 40px;
}
.center-nav {
font-size: 12px;
text-transform: uppercase;
}
.center-nav a{
text-decoration: none;
padding: 0 12px;
}
.right-nav{
position: fixed;
top: 30px;
right: 0;
height:40px;
display:flex;
align-items: center;
}
.right-nav a{
padding-right: 40px;
text-decoration: none;
padding: 0 12px;
font-size: 14px;
text-transform: uppercase;
}
.hamburger{
margin-right:20px;
top:10px;
color:#fff;
background-color: transparent;
border:0;
transform: rotate(90deg);
}