-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (63 loc) · 1.49 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
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
background-color: #efecec;
}
h3 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 26px;
text-align: center;
margin-top: 2%;
}
.container {
height: 450px;
width: 340px;
border: none;
margin: 5% auto;
}
textarea {
height: 100px;
width: inherit;
font-size: 26px;
text-align: end;
text-decoration: none;
background-color: #333333;
color: white;
}
.calculator-body {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
/* width: inherit; */
}
button {
height: 70px;
width: 100%;
font-size: 16px;
border: 0.1px solid #e7e7e7;
outline: none;
font-size: 20px;
}
#zero {
grid-column: 1 / 3;
}
.right-side {
background-color: #278ea5;
color: white;
}
.right-side:hover {
background-color: #24788b;
}
.top-buttons {
background-color: #f0f0f0;
}
.top-buttons:hover {
background-color: #cccccc;
}
.number-body {
background-color: #303a52;
color: white;
}
.number-body:hover {
background-color: #3d5181;
}