-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (62 loc) · 1.19 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
*{
margin: 0;
padding: 0;
font-size: 14px;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: all 0.5s ease;
background-color: blueviolet;
margin-top: 120px;
}
canvas{
margin-top: 8rem;
background-color: black;
display: none;
}
input{
color: white;
font-weight: bold;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background:transparent;
border: none;
width: 2rem;
margin: 1rem;
}
#numb{
display: flex;
justify-content: space-around;
margin-top: 200px;
width: 100%;
}
label{
font-weight: bold;
}
h1{
font-size: 5rem;
color: white;
}
.text{
color: white;
font-size: 3rem;
font-style: italic;
margin-bottom: 2rem;
text-align: center;
}
button{
color: white;
font-weight: bold;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
background:transparent;
border: none;
font-size: 2rem;
margin: 1rem;
margin-top: 5rem;
padding: 0.7rem;
border: 2px solid white;
box-shadow:10px black;
}
}