-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (76 loc) · 1.46 KB
/
styles.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
body {
text-align: center;
background-color: rgb(71, 71, 71);
}
.btn {
width: 110px;
height: 70px;
font-size: 15px;
margin: 1%;
border: 1px solid whitesmoke;
cursor: pointer;
color: whitesmoke;
}
.container {
padding: 0;
margin: 0;
left: 30%;
/* position: ; */
/* position: relative; */
}
/* Text for the display menu */
.prevText {
font-size: 20px;
text-align: right;
color: rgba(71, 71, 71, 0.63);
}
.displayText {
font-size: 40px;
text-align: right;
}
/* containers for different components of the calculator */
.calculator {
position: relative;
top: 80px;
background-color: rgb(71, 71, 71);
color: rgb(71, 71, 71);
width: 700px;
height: 750px;
border-radius: 15px;
border: 5px solid whitesmoke;
}
.previous {
width: 650px;
height: 60px;
background-color: beige;
color: rgb(71, 71, 71);
position: relative;
padding: 20px;
border-radius: 15px 15px 0 0;
left: 20px;
top: 23px;
}
.display {
width: 650px;
height: 80px;
position: relative;
left: 20px;
top: 15px;
padding: 20px;
background-color: beige;
border-radius: 0 0 15px 15px;
}
.inputs {
width: 650px;
height: 510px;
background-color: rgb(71, 71, 71);
color: red;
position: relative;
top: 50px;
left: 20px;
border-radius: 15px;
}
.custom-button:hover {
background-color: rgb(88, 136, 91);
color: white;
}