-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (85 loc) · 1.42 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (85 loc) · 1.42 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
html * {
-webkit-transition:all 0.3s 0s ease;
-moz-transition:all 0.3s 0s ease;
-o-transition:all 0.3s 0s ease;
transition:all 0.3s 0s ease;
border:none;
outline:none;
font-family:raleway, sans-serif;
}
body {
margin:0;
padding:0;
text-align:center;
background-color:#252645;
color:#fff;
}
.container {
height:95vh;
display:flex;
justify-content:center;
flex-direction:column;
align-items:center;
margin:0;
padding:0;
}
header {
display:flex;
flex-direction:column;
justify-content:space-evenly;
align-content:center;
font-family:raleway, sans-serif;
border:2px;
}
#title {
font-size:2.4rem;
margin-bottom:0;
margin-top: 2%;
}
#total-text {
margin:0;
padding:0;
opacity:0;
}
#total {
color:#e3818e;
margin-bottom:30px;
}
.grid-container {
display:grid;
justify-items:center;
grid-template-columns:repeat(3, 1fr);
grid-template-rows:repeat(3, 1fr);
gap:1rem;
}
button {
width:6rem;
height:6rem;
margin:0;
padding:0;
background-color:#fff;
border-radius:5px;
font-size:1.2rem;
font-weight:bold;
}
button:hover {
background-color:#ababab;
color:#252645;
cursor: pointer;
}
input#reset {
width:10rem;
height:6%;
margin:1rem;
background-color:#e65555ae;
border-radius:10px;
color:#fff;
font-size:1.6em;
font-weight:bold;
line-height:1;
-webkit-appearance:none;
cursor: pointer;
}
input#reset:hover {
background-color:#e65555;
}