-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
96 lines (91 loc) · 1.67 KB
/
stylesheet.css
File metadata and controls
96 lines (91 loc) · 1.67 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
body{
font-family: sans-serif;
background: url(https://source.unsplash.com/random);
background-repeat: no-repeat;
background-size: cover;
}
#container{
width: 1000px;
height: 550px;
margin: 20px auto;
}
#calculator{
background-color: rgba(255, 248, 220, 0.938);
border-radius: 5px;
height: 520px;
width: 320px;
margin: 0 auto;
top: 20px;
position: relative;
box-shadow: 0 6px 8px rgba(0, 0, 0, 70%),
0 6px 8px rgba(0, 0, 0, 70%);
}
#result{
height: 120px;
}
#history{
text-align: right;
height: 20px;
margin: 0 20px;
padding-top: 20px;
font-size: 15px;
color: #919191;
}
#output{
text-align: right;
height: 60px;
margin: 10px 20px;
}
#output-value{
max-width: 100%;
font-size: 30px;
}
#keys{
height: 400px;
}
.operator, .number, .empty{
width: 50px;
height: 50px;
margin: 15px;
float: left;
border-radius: 50%;
border-width: 0;
font-weight: bold;
font-size: 15px;
}
.number, .empty{
background-color: cornsilk;
}
.operator, .number{
cursor: pointer;
}
.operator:focus, .number:focus, .empty:focus{
outline: 0;
}
button:nth-child(4){
font-size: 20px;
background-color: rgb(0, 255, 255);
}
button:nth-child(8){
font-size: 20px;
background-color: rgb(255, 8, 0);
}
button:nth-child(12){
font-size: 20px;
background-color: rgb(0, 255, 13);
}
button:nth-child(16){
font-size: 20px;
background-color: rgb(0, 17, 255);
}
button:nth-child(20){
font-size: 20px;
background-color: rgb(200, 255, 0);
}
@media(max-width:999px){
#container{
width: 80%;
height: 80%;
margin: 10px 0;
}
}