-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdemo.css
More file actions
52 lines (42 loc) · 746 Bytes
/
demo.css
File metadata and controls
52 lines (42 loc) · 746 Bytes
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
/*
Use of this source code is governed by an AL-1S license that can be found in the LICENSE file
*/
/* BACKGROUD PHASE */
.d-stdback {
background: #e0eeec;
}
/* PLACEMENT PHASE */
.d-fill {
width: 100vw;
height: 100vh;
margin: 0;
}
.d-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.d-flex-vertical {
display: flex;
flex-direction: column;
}
.d-flex-horizontal {
display: flex;
flex-direction: row;
}
.d-padder {
padding: 20px;
}
/* TEXT PHASE */
.d-title {
font-size: min(9vw, 9vh, 4.5em);
font-weight: bold;
}
.d-subtitle {
margin-top: .3em;
line-height: 1.25em;
font-size: min(5vw, 5vh, 2.5em);
}
.d-tcenter {
text-align: center;
}