-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (62 loc) · 1.42 KB
/
styles.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
*, *::before, *::after {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: #708090;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.calculator {
display: grid;
justify-content: center;
align-content: center;
min-height: 100vh;
grid-template-columns: repeat(4, 100px);
grid-template-rows: minmax(120px, auto) repeat(5, 100px);
}
.calculator-button {
cursor: pointer;
font-size: 2rem;
color: white;
border: 0.1px solid black;
outline: none;
background-color: rgb(101, 107, 112);
}
.calculator-button:hover {
background-color: rgba(101, 107, 112, 0.75);
}
.tools {
background-color: rgb(61, 64, 70);
}
.tools:hover {
background-color: rgba(61, 64, 70, 0.75);
}
.operators, .equals {
background-color: #F1A43D;
}
.operators:hover, .equals:hover {
background-color: rgba(255, 149, 0, 0.75);
}
.span-two {
grid-column: span 2;
}
.output {
grid-column: 1 / -1;
background-color: rgba(50, 57, 64, 0.75);
display: flex;
align-items: flex-end;
justify-content: space-around;
flex-direction: column;
padding: 10px;
word-wrap: break-word;
word-break: break-all;
}
.previous-num {
color: rgba(255, 255, 255, .75);
font-size: 1.5rem;
}
.current-num {
color: white;
font-size: 2.5rem;
}