forked from gm3197/WebBuzzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
75 lines (68 loc) · 1.27 KB
/
main.css
File metadata and controls
75 lines (68 loc) · 1.27 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
.title {
text-align: left;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 0px;
}
.instructions {
text-align: left;
margin-left: 10px;
margin-top: 2px;
margin-bottom: 0px;
font-size: 18px;
}
hr {
border: 0.5px solid #ccc;
}
hr.sepline {
margin-top: 15px;
margin-bottom: 15px;
}
hr.topSep {
margin-bottom: 15px;
}
input.pretty {
border-radius: 5px;
border-color: #ccc;
border-width: 0.25px;
border-style: solid;
height: 40px;
width: 90%;
font-size: 22px;
margin: 0;
padding-left: 5px;
font-family: 'Encode Sans Semi Condensed', sans-serif;
}
button.pretty {
margin-top: 10px;
border-radius: 5px;
border-color: #5FBD5F;
border-width: 0.25px;
border-style: solid;
height: 35px;
width: 91%;
font-size: 25px;
background-color: #6AD26A;
line-height: 0px;
font-family: 'Encode Sans Semi Condensed', sans-serif;
}
main {
width: 320px;
border-radius: 3px;
border-color: #ccc;
border-width: 0.5px;
border-style: solid;
background-color: #FFF;
padding-bottom:10px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
min-width: 100vw;
min-height: 100vh;
font-family: 'Encode Sans Semi Condensed', sans-serif;
background-color: whitesmoke;
}