-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (90 loc) · 1.89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
html {
font-size: 16px;
color: antiquewhite;
}
/* *{
border-radius: 1rem;
} */
body {
display: flex;
flex-direction: column;
height: 100vh;
background-color: rgb(53, 53, 53);
justify-content: center;
align-items: center;
}
.screen {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
font-size: 4rem;
padding: 2rem;
border-bottom: 1rem solid rgb(111, 64, 158) ;
background-color:rgb(35, 110, 175);
margin-bottom: 1rem;
/* border: .25rem solid rgb(0, 0, 0); */
/* border-radius: 1rem; */
}
.calculatorBody {
border-radius: 1rem;
display: flex;
flex-direction: column;
background-color: rgb(27, 83, 50);
min-width: 500px;
border: 1rem solid rgb(111, 64, 158);
/* padding: 2rem; */
/* height: 2rem; */
/* width: 400px;
height: 10rem; */
/* flex: 1; */
/* justify-content: center; */
}
.buttonContainer {
display: flex;
flex-direction: column;
height: 30rem;
gap: 1rem;
margin-top: 1rem;
border-radius: 1rem;
border: 1rem solid rgb(27, 83, 50);
border-top: 0;
}
button {
font-size: 4rem;
display: flex;
flex-direction: column;
flex: 1 1 1rem;
justify-content: center;
align-items: center;
padding: 0;
border: .25rem solid black;
color: antiquewhite;
background-color:rgb(47, 79, 79);
border-radius: 1rem;
/* min-width: 4rem */
/* margin: 1rem; */
/* gap: 30px; */
}
button#zero {
flex: 2;
/* margin-right: 1rem; */
}
/* button#equal {
}
button#decimal {
} */
.rowStyle{
display: flex;
flex-direction: row;
justify-content: center;
flex: 1;
gap: 1rem;
/* padding: .1rem; */
/* border-radius: 10rem; */
/* align-items: center; */
/* width: max-content; */
}
button:hover {
background-color: hsl(180, 25%, 35%);
}