-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (69 loc) · 1.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h1 {
text-align: center;
}
.square {
width: 50px;
height: 50px;
background: black;
}
#drawing-canvas {
background: black;
border: 1px solid black;
border-radius: 15%;
border: 5px solid gray;
}
.btn {
margin: 10px 10px;
padding: 15px 20px;
font-size: 15px;
font-weight: bold;
border-radius: 15px;
transition: all 300ms ease-in-out;
}
.btn:hover {
cursor: pointer;
}
.btn:focus {
outline: none;
}
.btn:active {
outline: none;
border-bottom: none;
}
.green {
border: none;
background: limegreen;
color: white;
border-bottom: 5px solid green;
}
.red {
border: none;
background: rgb(233, 60, 60);
color: white;
border-bottom: 5px solid rgb(129, 0, 0);
}
.result {
margin: 10px 10px;
padding: 15px 20px;
width: 200px;
font-size: 1.3em;
text-align: center;
background: gray;
color: white;
border-bottom: 5px solid black;
border-radius: 15px;
visibility: hidden;
}