-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (110 loc) · 1.85 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
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
124
125
126
127
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
}
a {
margin-left: 5px;
color: black;
text-decoration: none;
}
.header {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
font-family: 'Orbitron', sans-serif;
font-weight: 400;
font-size: 50px;
background-color: #1a1c1b;
color: #cfcf6d;
}
.main {
display: flex;
justify-content: center;
flex: 5;
background-color: #1a1c1b;
}
.container {
display: flex;
flex-direction: column;
height: inherit;
width: 500px;
margin-bottom: 10px;
border: 10px solid #b39c7e;
border-radius: 3%;
}
.container .screen {
background-color: #9fa91f;
height: 100px;
display: flex;
align-items: center;
direction: rtl;
font-weight: 900;
font-size: 80px;
border: 5px solid black;
font-family: 'Quattrocento Sans', sans-serif;
overflow: auto;
}
.buttonsContainer {
display: flex;
flex: 1;
gap: 5px;
}
.buttonsContainer .leftSide,
.buttonsContainer .rightSide {
gap: 5px;
display: flex;
flex-direction: column;
flex: 1;
}
.block.operand {
background-color: #90989a;
color: black;
}
.operator {
background-color: #68574d;
}
.block.operand:hover {
background-color: #263e44;
}
.block.operand:active {
background-color: #263e44;
}
.operatorClicked {
background-color: #dba281;
}
.row {
display: flex;
flex: 1;
gap: 5px;
}
.rowLeft {
flex-direction: row-reverse;
}
.block {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
font-weight: bold;
font-size: 40px;
color: white;
cursor: pointer;
border: none;
border-radius: 15%;
}
.block:active {
transform: scale(0.9);
}
.footer {
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-family: arial, sans-serif;
color: #70757a;
padding: 15px;
}