-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·104 lines (88 loc) · 1.93 KB
/
styles.css
File metadata and controls
executable file
·104 lines (88 loc) · 1.93 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
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
102
103
body, html {
margin: 0;
padding: 0;
font-family: HelveticaNeue, Arial, sans-serif;
/* background-color: #000; */
/* background-color: #FDFCFB; */
background-color: #0E0E0E;
color: #FFF;
}
@font-face {
font-family: 'HelveticaNeue';
src: url('fonts/HelveticaNeue_Bold.ttf') format('truetype');
}
/* @font-face {
font-family: 'HelveticaNeue';
src: url('fonts/Helvetica_Regular.otf') format('opentype');
} */
/* @font-face {
font-family: 'HelveticaNeue';
src: url('fonts/Berthold_Akzidenz_Grotesk_Medium.otf') format('opentype');
} */
.poster {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.spiral-image {
background-image: url('images/torus-black-on-white-6605b1c9823e1.png');
background-size: cover;
height: 300px;
width: 300px;
}
.spiral-image-light-theme {
background-image: url('images/torus-black-on-white-6605b1c9823e1.png');
background-size: cover;
height: 300px;
width: 300px;
}
.spiral-image-dark-theme {
background-image: url('images/torus-white-on-black-6605b1c966ef9.png');
background-size: cover;
height: 300px;
width: 300px;
}
.flex-item {
flex: 1;
}
h1 {
font-size: calc(18px + 2.0vw);
text-transform: none;
margin: 0;
margin-bottom: 1em;
text-align: center;
}
p {
font-size: calc(14px + 1.0vw);
text-transform: none;
margin: 0;
margin-top: 0.5vw;
text-align: center;
}
.light-theme {
background-color: #FDFCFB;
color: #000;
}
.dark-theme {
background-color: #0E0E0E;
color: #FFF;
}
.long-text {
overflow-wrap: break-word;
}
.email {
position: fixed;
left: 50%;
bottom: 20px;
transform: translateX(-50%);
}
#theme-toggle {
font-family: HelveticaNeue, Arial, sans-serif;
position: fixed;
top: 0;
right: 0;
transform: translateX(-50%);
}