-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (74 loc) · 1.29 KB
/
styles.css
File metadata and controls
80 lines (74 loc) · 1.29 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
/*
Copyright (c) 2024 Mo Tiltmann
Licensed under the GNU General Public License v3 (GPLv3).
See the LICENSE file for details.
*/
body {
background-color: black;
color: white;
}
button {
width: 80px;
height: 80px;
border: none;
border-radius: 50%;
background-color: white;
border-width: 2px;
font-size: 20px;
margin: 2px;
color: black;
padding: 1px 1px;
cursor: pointer;
}
button:active {
background-color: gray;
}
/*
.Number-Button:hover {
background-color: rgb(28, 157, 232);
}
*/
.strikethrough {
opacity: 50%;
text-decoration: line-through;
text-decoration-thickness: 10%;
}
.link {
text-decoration: none;
font-family: 'Times New Roman', Times, serif;
color: #0366d6;
font-size: 13px;
}
.space {
height: 100px;
}
.small-space {
height: 20px;
}
#Clear-All-Button {
height: 40px;
width: 150px;
border-radius: 20px;
color: rgb(130, 0, 0);
}
#Clear-All-Button:active {
color: rgb(228, 0, 0);
background-color: rgb(94, 0, 0);
}
input {
height: 40px;
width: 250px;
border: none;
border-radius: 20px;
text-align: center;
}
div {
width: 840px;
}
#credits {
font-family: 'Times New Roman', Times, serif;
font-size: 15px;
}
.ActiveNumber {
border-radius: 40%;
}