forked from code-differently/JS-Calculator-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandard.css
More file actions
103 lines (89 loc) · 1.43 KB
/
standard.css
File metadata and controls
103 lines (89 loc) · 1.43 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
103
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#equalsign {
background-color: #4285f4;
}
h2 {
text-align: center;
}
input {
text-align: right;
display: flex;
margin: auto;
margin-top: 3rem;
}
/* style */
#calfield {
min-height: 4rem;
margin-bottom: 1rem;
width: 315px;
padding:10px;
}
#calfield2 {
min-height: 4rem;
margin-bottom: 1rem;
width: 560px;
padding:10px;
}
.symbols2 {
background-color: #aaaaaa; /* grey */
padding: 25px;
font-size: 25px;
text-decoration: none;
color: rgb(0, 0, 0);
border-radius: 10px;
width:160px;
}
#Rad {
width: 181px;
font-size: 25;
}
.symbols {
background-color: #aaaaaa; /* grey */
padding: 25px;
text-decoration: none;
color: rgb(0, 0, 0);
border-radius: 5px;
width:79px;
}
.numbers {
background-color: #f7f0f0; /* grey */
padding: 25px;
outline: none;
color: rgb(0, 0, 0);
border: none;
border-radius: 10px;
width:79px;
}
button {
font-size: 20px;
cursor: pointer;
text-decoration: none;
outline: none;
color: black;
border: solid;
margin: 7px 10px;
}
button:hover {
background-color:aqua;
}
#equalsign:hover {
background-color: aqua;
}
.container {
display: grid;
justify-content: center;
align-content: center;
margin-top: 4rem;
}
.calculator {
display:inline-grid;
border-color: black;
background-color: white;
border-style: solid;
text-justify: auto;
justify-content:space-around;
}