-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (119 loc) · 2.07 KB
/
style.css
File metadata and controls
123 lines (119 loc) · 2.07 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
margin: 0;
padding: 0;
background-clip: border-box;
}
body{
background: linear-gradient(35deg,#5E7Cb8,#9775CB);
}
.main {
width: 20%;
height: 75%;
margin: 100px auto 0 auto;
border-radius: 10px;
background-color: rgba(35, 46, 56, 0.664);
-moz-box-shadow: 0 0 10px #777777;
-webkit-box-shadow: 0 0 10px #777777;
box-shadow: 0 0 10px #777777;
box-shadow: 10px 20px 20px rgba(0,0,0,0.19), 10px 9px 6px rgba(0,0,0,0.23);
}
.calculatorName{
margin: 0 120px 0 120px;
color: lightblue;
}
.calculatorNamepart{
color: red;
}
.screen{
background-color: black;
margin-top: 5px;
height: 150px;
}
.displayInput{
background-color: black;
height: 93px;
font-size: 40px;
width: 100%;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-color: black;
text-align: right;
color: lightblue;
}
.result{
border-color: black;
height: 55px;
width: 100%;
font-size: 50px;
background-color: black;
color: lightblue;
}
.line{
background-color: red;
}
.key{
width: 70%;
height: 64%;
border-bottom-left-radius: 15px;
background-color: #25314B;
float: left;
}
.control{
height: 310px;
width: 30%;
float: right;
}
.button{
height: 13%;
width: 22%;
float: left;
margin: 10px;
}
.button1{
height: 13%;
width: 42%;
float: left;
margin: 10px;
margin-left: 25px;
}
.num{
padding: 6px 6px 6px 5px;
color: black;
font-size: 25px;
cursor: pointer;
border-radius: 100%;
width: 42px;
height: 45px;
margin-left: 2px;
background-color: #25314B;
}
.num1{
padding: 5px 6px 6px 8px;
color: black;
font-size: 30px;
cursor: pointer;
border-radius: 100%;
width: 42px;
height: 45px;
background-color: #25314B;
}
.dot{
font-size: 27px;
padding: 0px;
padding-bottom: 25px;
}
.divide{
padding-left: 8px;
}
.multiply{
padding-top: 10px;
}
.minus{
padding-top: 2px;
}
#sol{
background-color: red;
}
#cancel{
font-size:22px;
}