-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (45 loc) · 823 Bytes
/
style.css
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
html, body {
margin: 0;
}
html {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
height: 100%;
}
body {
overflow: hidden;
height: inherit;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
h1 {
letter-spacing: -1px;
position: absolute;
margin: 0;
top: -4px;
right: 5px;
color: transparent;
color: white;
}
#output{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
p{
background-color: rgb(0, 0, 0);
color: rgb(224, 213, 213);
font-size: 40px;
}
.hidden{
display: none;
}
button{
padding: 10px 20px;
background-color: rgb(85, 200, 85);
border-radius: 5px;
box-shadow: 2px 2px 4px rgb(147, 138, 138);
font-size: 25px;
}