-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstandardC.css
More file actions
90 lines (69 loc) · 1.48 KB
/
standardC.css
File metadata and controls
90 lines (69 loc) · 1.48 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
/* container */
.container {
text-align: inline;
}
/* Standard | Scienctific */
p {
font-size: 40px;
margin-left: 35px;
padding-left: 15px;
padding-top: 20px;
color: rgb(249, 249, 252);
}
/* card */
.card{
background-color: gray; /*(87, 23, 23) */
margin-right: auto;
margin-left: auto;
border-radius: 5%;
width: 10;
}
/* Numerical Input */
.input {
text-align: right;
font-size: 50px;
margin-left: 45px;
margin-right: 45px;
margin-bottom: 25px;
display: inline-block;
border-radius: 3%;
width: 665px;
height: 70px;
}
/* button hover */
.button:hover{
background-color: blue;
transition-duration: 0.4s;
}
/* All numeric Buttons */
.button{
margin: 5px 15px 5px 5px;
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
width: 150px;
padding: 30px;
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;
margin-left: 35px;
margin-right: 35px;
}