-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (69 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (69 loc) · 1.17 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
76
77
78
79
80
81
82
@import url("https://fonts.googleapis.com/css2?family=Radio+Canada:wght@400;500;600;700&display=swap");
* {
padding: 0;
margin: 0;
font-family: "Radio Canada", sans-serif;
}
body {
background-color: rgb(255, 255, 255);
}
.header {
display: flex;
align-items: center;
justify-content: center;
margin: 15px;
}
.header h1 {
text-align: center;
}
.box {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 35px;
}
.row {
display: flex;
align-items: center;
justify-content: center;
}
.btn {
border: 1px solid black;
border-radius: 5px;
height: 75px;
margin: 2px;
width: 75px;
text-align: center;
font-size: 50px;
font-weight: 500;
}
.btn:hover {
cursor: pointer;
background-color: rgb(255, 144, 144);
}
.btn:disabled {
color: black;
cursor: no-drop;
}
.result {
text-align: center;
}
.reset {
text-align: center;
}
#reset {
border: 1px solid black;
cursor: pointer;
color: black;
background-color: white;
border-radius: 5px;
padding: 5px 20px;
font-size: 17px;
margin: 35px;
transition: all 0.1s ease-in-out;
}
#reset:hover {
color: white;
background-color: black;
}