-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
142 lines (134 loc) · 2.84 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
.container{
display: grid;
grid-template-columns: 2fr 4fr 2fr;
grid-template-rows: 70px 70px 75% 10px;
grid-auto-flow: column ;
height: 100vh;
background-color: azure;
}
h1{
grid-area: 1/2/2/3;
color: gray;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.operationlist {
align-self: start;
grid-area: 3/3/4/4;
font-family:Arial;
font-size:0.8em;
list-style: circle;
font: bold;
text-align: center;
margin-top: 10px;
}
li {
margin-bottom: 10px;
text-align: left;
font-size: 1.2em;
font: bold;
}
.clear {
place-self: center;
height: 50px;
width: 150px;
grid-column: 3;
grid-row-start: 2;
grid-row-end: 3;
box-shadow: 0px 10px 14px -7px #276873;
background:linear-gradient(to bottom, #29668f 5%, #599bb3 100%);
background-color:#599bb3;
border-radius:8px;
border:2px solid #29668f;
margin: 5px;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:20px;
font-weight:bold;
/* padding:13px 20px; */
}
.calcBox{
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 2 ;
grid-row-end: 4;
display: grid;
grid-template-columns: repeat(5, 1fr) ;
grid-row: repeat(8, 15px);
background-color: rgb(199, 243, 239);
padding: 20px;
column-gap: 5px;
row-gap: 5px;
border: solid;
border-color: indigo;
border-radius: 5px;
}
.resultBox{
text-align: center;
grid-area: 1/1/2/4;
font-family:Arial;
height: 1em;
font-size:20px;
font-weight:bold;
}
.totalBox{
text-align: center;
grid-area: 1/4/2/6;
font-family:Arial;
height: 1em;
font-size:20px;
font-weight:bold;
}
.input {
grid-area: 2/2/3/5;
border-radius:8px;
border:2px solid #29668f;
background-color: ivory;
margin: 10px;
cursor:pointer;
color:#061b5f;
font-family:Arial;
text-align: right;
font-size:20px;
font-weight:bold;
padding: 10px;
height: 20px;
}
.button {
box-shadow: 0px 10px 14px -7px #276873;
background:linear-gradient(to bottom, #29668f 5%, #599bb3 100%);
background-color:#599bb3;
border-radius:8px;
border:2px solid #29668f;
margin: 5px;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:20px;
font-weight:bold;
padding:13px 20px;
text-decoration:none;
text-shadow:0px 1px 0px #3d768a;
}
.button:hover {
background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
background-color:#408c99;
}
.button:active {
position:relative;
top:1px;
}
.hidden {
visibility: hidden;
}
.calculation {
background-color: tomato;
background:linear-gradient(to bottom, #f13333 5%, #e66161 100%);
border:2px solid tomato;
}
.calculation:hover {
background-color: tomato;
background:linear-gradient(to bottom, #e42323 5%, #f30d0d 100%);
border:2px solid tomato;
}