-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (82 loc) · 1.53 KB
/
styles.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: sans-serif;
min-height: 100%;
}
.calculator {
background-color: #fadde7;
border-radius: 30px;
padding: 32px;
width: 300px;
}
.display {
background-color: #fbc2d5;
border-radius: 10px;
box-shadow: inset 0 0 10px rgba(237, 147, 192, 0.2);
font-size: 2em;
height: 50px;
line-height: 50px;
margin-bottom: 20px;
padding: 0 10px;
text-align: right;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 9px;
}
.button {
background-color: #febad2;
border: none;
border-radius: 50%;
box-shadow: 0 4px #f297bb;
color: #494848;
margin: 1px;
font-size: 1.5em;
height: 60px;
width: 60px;
text-align: center;
line-height: 60px;
}
.buttonp {
background-color: #faf4f6;
border: none;
border-radius: 50%;
box-shadow: 0 4px #f9c8dc;
color: #494848;
margin: 1px;
font-size: 1.5em;
height: 60px;
width: 60px;
text-align: center;
line-height: 60px;
}
.buttonq {
background-color: #fa7ea7;
border: none;
border-radius: 50%;
box-shadow: 0 4px #f75898;
color: #494848;
margin: 1px;
font-size: 1.5em;
height: 60px;
width: 60px;
text-align: center;
line-height: 60px;
}
h3 {
color: #b13166ef;
}
.button:active {
transform: translateY(2px);
}
.buttonp:active {
transform: translateY(2px);
}
.buttonq:active {
transform: translateY(2px);
}