-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
101 lines (85 loc) · 1.72 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
92
93
94
95
96
97
98
99
100
101
:root{
--background-landing:linear-gradient(to right, hsl(13, 100%, 72%),hsl(353, 100%, 62%));
--background-mobile-panel:#ffff;
--font-family-primary:'Ubuntu',san-serif;
--font-family-secondary:'Overpass',san-serif;
--font-size-u1:400;
--font-size-u2:500;
--font-size-u3:700;
--font-size-o1:300;
--font-size-o2:600;
--primary-color:rgb(224, 212, 212);
--mobile-nav:rgb(75, 69, 69);
/* --mobile-nav:#ffff; */
}
*,*::before,*::after{
box-sizing: border-box;
}
body{
font-weight: 16px;
margin: 0px,0px;
width: 100%;
}
header{
background: var(--background-landing);
text-align: left;
position: fixed;
width: 100%;
z-index: 999;
padding:1em;
margin: -10px -10px -10px -10px;
}
.logo{
color: #fff;
font-family: var(--font-family-primary);
font-weight: var(--font-size-u3);
font-size:2em;
}
nav{
display: flex;
background: var(--background-mobile-panel);
justify-content: center;
align-items: center;
width:70%;
position:relative;
text-align:center;
top: 100%;
left: 15%;
}
nav ul{
list-style: none;
margin: 0;
padding: 0;
list-style: none;
}
nav li{
margin-bottom: 1em;
margin-left: 1em;
margin-top: 1em;
}
nav a{
color:var(--mobile-nav);
font-weight: var(--font-size-u2);
font-family: var(--font-family-primary);
font-size: 1.1rem;
text-decoration: none;
text-size-adjust: 2em;
display: block;
}
.shutter-pannel{
border-radius: 10px;
}
.auth{
padding: 0.5rem;
border-radius: 20px;
}
.active{
background:var(--background-landing);
}
.nav-toggle{
float: right;
margin-left: 95%;
}
.nav-toggle:checked ~ nav {
display:block;
}