-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscientificC.css
More file actions
86 lines (65 loc) · 1.37 KB
/
scientificC.css
File metadata and controls
86 lines (65 loc) · 1.37 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
/* container */
.grid-container {
display: grid;
grid-template-columns: auto auto auto auto auto auto auto;
grid-gap: 8px;
margin-left: 35px;
margin-right: 35px;
margin-bottom: 10px;
}
/* Standard | Scienctific */
p {
font-size: 40px;
margin-left: 35px;
padding-top: 20px;
color: rgb(249, 249, 252);
}
/* card */
.card{
background-color: gray;
margin-right: auto;
margin-left: 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: 920px;
height: 70px;
}
/* button hover */
.button:hover{
background-color: blue;
transition-duration: 0.4s;
}
/* All numeric Buttons */
.button{
font-size: 25px;
text-align: center;
width: 125px;
padding: 7px;
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);
}