-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdisplay.css
More file actions
88 lines (74 loc) · 1.48 KB
/
display.css
File metadata and controls
88 lines (74 loc) · 1.48 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
html,
body {
padding: 0;
margin: 0;
font-family: Montserrat, Avenir Next;
height: 100%;
/* background-image: linear-gradient(to top, #8f88ee, #cd84f1, #dbaaf3); */
}
* {
padding: 0;
margin: 0;
appearance: none;
-webkit-appearance: none;
}
img {
pointer-events: none;
}
*:focus {
outline: none;
}
/* ------------------------------------------------------------------------------------------------------------------------ */
#header {
position: fixed;
z-index: 1000;
width: 100%;
height: 90px;
background: none;
display: flex;
flex-direction: column;
justify-content: center;
}
#header #logo {
margin: 0 5%;
}
#header #logo img {
height: 40px;
}
/* ------------------------------------------------------------------------------------------------------------------------ */
#prepare {
width: 100%;
min-height: 100%;
background-image: linear-gradient(to top, #8f88ee, #cd84f1, #dbaaf3);
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
#prepare #title {
width: 50%;
font-size: 25px;
font-weight: 500;
margin: 30px auto;
}
#prepare #prepare-scroller {
width: auto;
height: auto;
overflow: scroll;
background-color: red;
margin: 0 auto;
text-align: left;
}
#prepare #prepare-scroller::-webkit-scrollbar {
width: 0px;
background: transparent;
}
.prepare-message {
height: auto;
font-size: 30px;
font-weight: 600;
}
.prepare-message .message-span {
font-size: 100px;
font-weight: 700;
}