-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (85 loc) · 1.71 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
html{
background-color: rgb(235, 126, 107);
}
html, body, #calcContainer, #calcContainer > *{
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
box-sizing:border-box;
}
#calcContainer{
height: 55%;
width: 19%;
border-radius: 20px;
flex-direction: column;
gap: 30px;
padding: 25px;
justify-content: flex-start;
background-color: #393939;
}
#headerContainer{
border-radius: 10px;
height: 20%;
width: 100%;
background-color: #a4af77;
justify-content: center;
font-weight:bolder;
padding: 15px;
flex-direction: column;
}
#mainHeadCont{
display: flex;
height: 60%;
width: 100%;
background-color: #a4af77;
/* border: 3px solid black; */
justify-content:end;
font-size: 26px;
}
#secHeadCont{
display: flex;
height: 40%;
/* border: 3px solid black; */
justify-content:end;
font-size: 17px;
width: 100%;
background-color: #a4af77;
}
#bodyContainer{
height: 80%;
width: 100%;
flex-wrap: wrap;
gap: 5px;
padding-bottom: 14.5px;
padding-top: 14.5px;
}
button{
background-color: #656568;
color: white;
font-weight: bolder;
height: 16%;
width: 22.75%;
border-radius: 7.5px;
border: none;
font-family: 'Arial Black';font-size: 22px;
transition: 0.2s;
}
button:hover{
box-shadow: 0 8px 8px 0 rgba(0,0,0,0.24), 0 8px 8px 0 rgba(0,0,0,0.19);
transform: translateY(-1.5px);
}
button:active, button.active{
transform: translateY(1.5px);
box-shadow: none;
}
.topBut{
width: 48%;
height: 18%;
background-color: black;
font-size: 16px
}
#equalBut{
background-color: crimson;
}