-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (70 loc) · 1.59 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
75
76
77
78
79
80
81
82
body {
background-color: rgb(182, 182, 182);
}
h1 {
color: black;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.page {
display: flex;
flex-direction: column;
align-items: center;
}
.device {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
min-height: 500px;
max-height: 500px;
min-width: 400px;
max-width: 400px;
border: 2px solid grey;
background-color: black;
padding: 5px 0px;
border-radius: 10px;
}
#screen {
min-height: 100px;
max-height: 100px;
min-width: 350px;
max-width: 350px;
border: 2px solid white;
background-color: rgb(195, 195, 195);
border-radius: 5px;
font-size: 80px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: right;
}
.row {
display: flex;
justify-content: space-between;
align-items: center;
min-height: 60px;
max-height: 60px;
min-width: 350px;
max-width: 350px;
}
button {
background-color: rgb(73, 92, 67);
border-radius: 10px;
min-width: 80px;
padding: 10px 20px;
font-size: 30px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border: 1px solid silver;
}
button:active {
transform: scale(0.95); /* Slightly reduce the button size */
border-color: #003575; /* Optional: Change border color */
}
.operator {
background-color: rgb(188, 0, 0);
}
.number, #decimal {
background-color: rgb(238, 149, 34);
}
#clear, #delete {
background-color: rgb(82, 144, 198);
width: 170px;
}