-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (48 loc) · 958 Bytes
/
style.css
File metadata and controls
48 lines (48 loc) · 958 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
body {
margin: 0;
background-color: #decfe0;
font-family: "Open Sans", sans-serif;
}
#ui {
padding-top: 1em;
text-align: center;
background-color: white;
width: 30em;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#heading {
background-color: #e660ab;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
line-height: 13px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#wrap {
display: flex;
flex-direction: row;
justify-content: center;
}
#submit {
background-color: #decfe0;
font-family: "Open Sans", sans-serif;
cursor: poiner;
border: none;
border-radius: 2px;
font-size: 20px;
}
#submit:hover {
border: none;
background: #decfe0de;
}
#streamSettings {
font-size: 20px;
}
input {
text-align: center;
}
footer {
text-align: right;
}