-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront.css
More file actions
48 lines (40 loc) · 784 Bytes
/
front.css
File metadata and controls
48 lines (40 loc) · 784 Bytes
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
body {
background-color: rgb(131, 131, 131);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
vertical-align: middle;
}
button {
border-radius: 30px;
height: 30px;
width: 50px;
font-size: 16px;
}
#calculateButton {
width: 70px;
font-size: 15px;
}
button, #calculateButton {
margin: 5px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
}
#inputBox {
margin: 10px;
border-radius: 30px;
}
button, #calculateButton, #inputBox {
outline: 1px;
outline-style: solid;
}
#btnClear {
border-radius: 0px;
margin: 20px;
}
.backgroundCalc {
position: relative;
background-color: black;
}