-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (51 loc) · 983 Bytes
/
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
/* @import url('https://fonts.googleapis.com/css2?family=Vujahday+Script&display=swap'); */
* {
margin: 0%;
padding: 0%;
}
.container {
text-align: center;
margin: 50px 0px 0px 0px;
/* font-family: 'Vujahday Script', cursive; */
padding-bottom: 20px;
font-size: 32px;
}
table {
margin: auto;
}
input {
font-size: 33px;
border: rgb(228, 203, 203) double;
border-radius: 15px;
margin: 10px 0px;
text-align: right;
}
button {
font-size: 40px;
height: 57px;
width: 90px;
text-align: center;
margin: 5px;
/* padding-right: 15px; */
background-color: rgb(228, 203, 203);
border-radius: 20px;
cursor: pointer;
user-select: none;
}
.calculator {
background-color: rgb(0, 0, 0);
border-radius: 15px;
margin: 0px;
padding: auto;
border: 5px double rgb(228, 203, 203);
padding: 20px;
display: inline-block;
}
footer {
position: fixed;
bottom: 0;
width: 100vw;
color: white;
text-align: center;
background-color: black;
}