-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
62 lines (62 loc) · 1 KB
/
main.css
File metadata and controls
62 lines (62 loc) · 1 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
@font-face {
font-family: 'Simplifica';
src: url('src/assets/font/SIMPLIFICA Typeface.woff') format('woff');
}
:root {
--main-bg-color: #252628;
--navbar-bg-color: #181818;
--highlight-color: #0797A4;
--red-color: #F6554E;
}
body {
background-color: var(--main-bg-color);
font-family: 'Simplifica';
}
.ced {
z-index: 0;
width: 30%;
height: 734px;
position: absolute;
top: 0;
right: 15%;
bottom: 0;
left: auto;
margin: auto;
}
.led {
z-index: 0;
width: 30%;
height: 734px;
position: absolute;
top: 0;
right: 60%;
bottom: 0;
left: auto;
margin: auto;
}
.led p{
margin: 50% 0;
}
#main-logo{
position: absolute;
height: auto;
max-height: 734px;
margin: auto;
width: auto;
max-width: 726px;
}
.greeting {
font-size: 60pt;
color: #F1F1F1;
}
.highlight{
color: var(--highlight-color);
text-transform: uppercase;
font-stretch: ultra-expanded;
}
.content-text{
font-size: 20pt;
font-weight: 100;
font-style: italic;
font-variant-caps: all-small-caps;
}