-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
166 lines (135 loc) · 3.38 KB
/
default.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on June 21, 2023 */
@font-face {
font-family: 'nunitoextrabold';
src: url('fonts/nunito-extrabold-webfont.woff2') format('woff2'),
url('fonts/nunito-extrabold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'exo_2regular';
src: url('fonts/exo2-regular-webfont.woff2') format('woff2'),
url('fonts/exo2-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'nunitoregular';
src: url('fonts/nunito-regular-webfont.woff2') format('woff2'),
url('fonts/nunito-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/*! End of generated by Font Squirrel */
.step {
opacity: 0.3;
transition: opacity 1s;
}
.step.active {
opacity: 1
}
body {
background: radial-gradient(#f0f0f0,#9ba5af);
font-size: 200%;
text-align: center;
font-family: nunitoregular;
}
p {
font-size: 125%;
font-weight: normal;
margin-bottom: 1em;
margin-top: 1em;
}
em {
font-size: 100%;
font-family: nunitoregular;
}
strong {
font-family: nunitoextrabold;
font-size: 100%;
letter-spacing: -2px;
}
h1, h2, h3, h4 {
font-family: exo_2regular;
font-weight: heavy;
margin-bottom: 0.3em;
margin-top: 0.3em;
}
ul {
list-style-position: inside;
}
li {
font-size: 125%;
font-family: nunitoregular;
font-weight: normal;
margin-bottom: 0.3em;
margin-top: 0.3em;
padding-left: 0.3em;
line-height: 1.8em;
list-style-type: circle;
text-align: left
}
a {
text-decoration: none;
color: black;
}
#ThreeD H1 {
font-family: Racing Sans One;
font-size: 300%;
}
#thequestion p {
font-family: Racing Sans One;
}
.impress-on-homeslide {
background: #E3001B;
}
div#homeslide {
color: white
}
div#about {
text-align: right;
padding-right: 10em
}
div#about.present .transition-bold {
font-weight: 1000;
-webkit-transition-delay: 1s;
-moz-transition-delay: 1s;
-ms-transition-delay: 1s;
-o-transition-delay: 1s;
transition-delay: 1s;
}
.small-list {
font-size: 0.8em;
}
.full-image {
width: 100vw;
}
.full-image figure img {
max-height: 80vh;
max-width: 80vw;
}
/* Typewriter effect style */
.typewriter h1 {
width: 70%; /* This makes the element only as wide as its content */
overflow: hidden; /* Ensures the content is not visible until the animation */
border-right: 0.15em solid orange; /* The cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Centering the content */
letter-spacing: .17em; /* Adjust as needed */
/* Apply both animations with their durations, steps, and infinite loop for blink-caret, but ensure they're paused */
animation: typing 1.5s steps(15, end) paused, blink-caret .75s step-end infinite paused;
}
/* When the home-remote-striked-with-typewriter step is active, play the animation */
.typewriter.active h1 {
animation-play-state: running, running;
}
/* Typewriter typing effect */
@keyframes typing {
from { width: 0 }
to { width: 70% }
}
/* Cursor animations */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}