-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScientificCalculatorStyle.css
More file actions
61 lines (57 loc) · 947 Bytes
/
ScientificCalculatorStyle.css
File metadata and controls
61 lines (57 loc) · 947 Bytes
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
.window{
display: flex;
justify-content: center;
align-items: center;
top: 0vh;
left: 0vh;
position: fixed;
height: 100%;
width: 100%;
}
.back{
background-color: grey;
height: 90vh;
width: 80vh;
border-radius: 2vh;
}
.inop{
padding-left: 1.8vh;
padding-bottom: 1.8vh;
padding-right: 1.8vh;
}
.output{
height: 10vh;
width: 96%;
font-size: 6vh;
text-align: right;
}
/* Button Styling */
.in{
height: 10vh;
width: 10vh;
font-size: 5vh;
margin: 1%;
border-radius: 2vh;
border-style: none;
}
input:hover{
cursor: pointer;
}
.brand{
margin-right: 3vh;
text-align: right;
font-size: 2vh;
font-family:arial black;
}
.red{
color: black;
background-color: #ec3440;
}
input[name=operator]{
background-color: #006100;
color: white;
}
input[name=oprtr]{
background-color: orangered;
color: white;
}