-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (38 loc) · 820 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
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(73, 74, 73);
font-family: 'Courier New', Courier, monospace;
}
/* RECTANGLE*/
#can{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
#result{
background-color: rgb(73, 74, 73);
margin: auto;
width: 200px;
margin-top: 250px;
display: none;
align-items: center;
justify-content: center;
font-family: 'Courier New', Courier, monospace;
}
#btn{
padding: 0.5rem 1rem;
background-origin: 20px;
border: none;
color: rgb(203, 90, 14);
background-color: rgb(255, 255, 255);
font-size: 20px;
margin-top: 10px;
cursor: pointer;
text-transform: uppercase;
font-family: 'Courier New', Courier, monospace;
}