-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstandardCrevised.css
More file actions
102 lines (78 loc) · 1.75 KB
/
standardCrevised.css
File metadata and controls
102 lines (78 loc) · 1.75 KB
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
/* container */
.container {
text-align: block;
}
/* Standard | Scienctific */
p {
font-size: 40px;
margin-left: 35px;
padding-top: 20px;
padding-bottom: none;
color: rgb(249, 249, 252);
}
/* card */
.card{
background-color: gray; /*(87, 23, 23) */
margin: auto;
border-radius: 5%;
width: 10;
}
/* Numerical Input */
.input {
text-align: right;
font-size: 50px;
margin-left: 35px;
margin-right: 35px;
margin-bottom: 25px;
display: inline-block;
border-radius: 3%;
width: 500px;
/* height: -70px; */
}
/* button hover */
.button:hover{
background-color: blue;
transition-duration: 0.4s;
}
/* All numeric Buttons */
.button{
/* margin: 5px 15px 5px 5px; */
font-size: 25px;
margin-left: 0px;
margin-right: 0px;
width: 125px;
padding: 10px;
border-radius: 10%;
background-color: rgb(143, 55, 29);
color: rgb(249, 249, 252);
}
/* nonnumeric buttons top row & right column */
.nonnumeric-button {
background-color: rgb(87, 23, 23);
}
/* nonnumeric "=" button */
.equal-button {
background-color: rgb(184, 184, 184);
color: rgb(87, 23, 23);
}
/* nonnumeric "period" button */
.period-button {
background-color: rgb(143, 55, 29);
color: rgb(249, 249, 252);
}
/* Buttons are grouped by rows. top row, 2nd row, 3rd row, 4th row & 5th row */
.btn-group {
/* display: inline-block; */
display: grid;
grid-template-columns: auto auto auto auto;
/* grid-gap: 8px; */
margin-left: 35px;
margin-right: 45px;
/* margin-bottom: 25px; */
/* display: block; */
/* margin: auto; */
/* margin-left: 35px;
margin-right: 35px; */
/* padding-right: 30px; */
/* width: auto; */
}