-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (81 loc) · 1.5 KB
/
style.css
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
html {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: whitesmoke;
/* background: linear-gradient(to right, #2c5364, #203a43, #0f2027); */
}
.calculator {
background: white;
width: 400px;
border-radius: 12px;
box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.6);
}
.calculator-display {
background: rgb(138, 132, 132);
color: white;
margin: 0;
display: flex;
align-items: center;
justify-content: flex-end;
border-radius: 10px 10px 0 0;
}
.calculator-display h1 {
margin: 0;
padding: 25px;
font-size: 45px;
font-family: 'Lucida Console', sans-serif;
font-weight: 100;
overflow-x: auto;
}
.calculator-display h1::-webkit-scrollbar {
display: none;
}
.calculator-buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
padding: 10px;
}
button {
min-height: 50px;
font-size: 20px;
font-weight: 100;
border: none;
border-radius: 5px;
cursor: pointer;
background: rgba(221, 221, 221, 0.6);
}
button:hover {
filter: brightness(110%);
}
button:active {
transform: translateY(1px);
}
button:focus {
outline: none;
}
.operator {
background: rgba(148, 148, 148, 0.6);
color: white;
font-size: 25px;
}
.clear {
background: rgba(228, 127, 127, 0.6);
}
.equal-sign {
grid-column: -2;
grid-row: 2 / span 4;
background: rgba(37, 197, 131, 0.6);
}
/* Media Query */
@media screen and (max-width: 600px) {
.calculator {
width: 90%;
}
}