-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (71 loc) · 1.23 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
button,
input[type="button"]{
background-color: #00004b;
padding: 0.5rem;
width: 3.5rem;
height: 3.5rem;
margin: 0.1rem;
font-size: 1.5rem;
border-radius: 1rem;
border-width: 0.25rem;
cursor: pointer;
}
.input-box {
text-align: right;
font-size: 1.75rem;
width: 15rem;
height: 3rem;
margin: 1rem 0.5rem 1rem 0.2rem;
border-radius: 1rem;
background-color: #607060;
color: white;
opacity: 85%;
font-family: 'Exo 2', sans-serif;
}
.calc{
display: flex;
align-items: center;
justify-content: center;
width: fit-content;
background-color: #4f4f4f;
padding: 1rem;
border-radius: 2rem;
border: 0.2rem solid lightslategray;
}
.num{
color: #e0ffff;
border-color: #e0ffff;
}
.op,
.eq{
color: peachpuff;
border-color: peachpuff;
}
.ac,
.del{
color: red;
border-color: red;
}
h1{
font-size: 3rem;
font-family: 'Bebas Neue', cursive;
color: #4fcfa4;
}
#zero{
width: 8rem;
}
*{
background-color: #202020
}
td,
tbody{
background-color: #4f4f4f;
}
sup,
.fa-solid{
background-color: #00004b;
}
::placeholder{
color: white;
opacity: 40%;
}