-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (109 loc) · 1.88 KB
/
style.css
File metadata and controls
117 lines (109 loc) · 1.88 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
body{
font-family: 'Open Sans',sans-serif;
background-color: black;
overflow-x: hidden
}
#navbar{
text-align: center;
}
#title{
padding: 20px 10px;
color: white;
}
#developer-name{
color: white;
}
#networks{
padding: 30px 20px;
}
#footer{
padding: 10px 10px;
}
#container{
width: 1500px;
height: 800px;
background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.3)), url(bgImg.jpg);
margin: 5px 5px;
}
#calculator{
width: 350px;
height: 600px;
background-color: #eaedef;
margin: 0 auto;
top: 90px;
down: 20px;
position: relative;
border-radius: 32px;
box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 5), 0 6px 20px 0 rgba(0, 0, 0, 1);
}
#result{
height: 105px;
}
#history{
text-align: right;
height: 20px;
margin: 0 20px;
padding-top: 20px;
font-size: 19px;
color: #f8160b;
}
#output{
text-align: right;
height: 60px;
max-height: 120px;
word-wrap: break-word;
margin: 10px 20px;
font-size: 20px;
color: #f8160b;
}
#keyboard{
height: 400px;
}
.operator, .number, .empty{
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 30%;
border-width: 1;
font-weight: bold;
font-size: 18px;
}
.number, .empty{
background-color: #8bedf7;
}
.number, .operator{
cursor: pointer;
}
.operator:active, .number:active{
font-size: 13px;
}
.operator:focus, .number:focus, .empty:focus{
outline: 0;
}
button:nth-child(4){
font-size: 30px;
background-color: #20b2aa;
}
button:nth-child(8){
font-size: 30px;
background-color: #05f8eb;
}
button:nth-child(12){
font-size: 30px;
background-color: #f08080;
}
button:nth-child(16){
font-size: 30px;
background-color: #7d93e0;
}
button:nth-child(20){
font-size: 30px;
background-color: #9477af;
}
button:nth-child(18){
background-color: #6a0ab8;
}
button:nth-child(19){
background-color: #c21ab9;
}