-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
87 lines (73 loc) · 1.06 KB
/
main.css
File metadata and controls
87 lines (73 loc) · 1.06 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
*,
*:after,
*:before {
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
border: 0;
margin: 0;
font-size: 16px;
}
h1 {
border: 0;
margin: 0;
}
.wrapper {
height: 100%;
width: 100%;
background-color: #BBB;
}
.welcome-screen {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
color: white;
}
.main header {
height: 80px;
background-color: #282828;
padding: 1rem;
color: #FFF;
}
.main .content {
flex:1;
background-color: #1f1f1f;
}
.main footer {
height: 80px;
background-color: #282828;
padding-top: 1rem;
}
.controls {
display:flex;
justify-content: center;
align-items: center;
font-size: 2rem;
}
.hidden {
display: none;
}
.right.floated {
float: right;
}
.clickable {
cursor: pointer;
}
.error {
border: 2px solid red;
}
.play-icon {
// color: teal;
}