-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (81 loc) · 1.64 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
* {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
box-sizing: border-box;
}
body {
background-color: #ffffff;
min-height: auto;
display: flex;
justify-content: center;
align-items: center;
background-color: #131313;
}
.container {
width: auto;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 17px;
border-radius: 9px;
user-select: none;
}
#Display-area {
width: 100%;
margin: 3vh 0;
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(2, minmax(40px, auto));
word-wrap: break-word;
border-bottom: 1px rgba(128, 128, 128, 0.116) solid;
}
#Display-area .currentInput {
/* display: flex; */
text-align: right;
height: 8vh;
color: white;
font-size: xx-large;
line-height: 2;
word-wrap: break-word;
font-weight: bold;
}
#Display-area .answerScreen {
text-align: right;
color: rgba(150, 150, 150, 0.87);
height: 7px;
line-height: 3;
font-size: larger;
}
.keypad-btns {
display: grid;
grid: repeat(5, 90px) / repeat(4, 130px);
grid-row-gap: 20px;
grid-column-gap: 20px;
}
.keypad-btns button {
outline: none;
border: none;
border-radius: 8px;
background-color: #474b6b;
color: #fff;
font-size: x-large;
font-weight: bold;
}
.keypad-btns .fun_btn {
color: #000;
background: #95a7ff;
font-weight: bold;
}
button:hover{
opacity: 0.8;
}
#clear {
background: #ff8052;
}
@media only screen and (max-width: 600px) {
body {
background-color: #131313;
align-items: flex-start;
}
}