-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (102 loc) · 1.46 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
font-size: 15px;
font-weight: bold;
user-select: none;
}
:root {
--akaWhite: rgb(193, 192, 192);
}
body,
html {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
body {
background-color: var(--akaWhite);
}
.row {
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 5px 0;
}
.keyboardLeft {
width: 80%;
display: inline-block;
}
.keyboardRight {
width: 19%;
display: inline-block;
}
.main {
width: 750px;
height: 260px;
padding: 5px;
border: 2px solid black;
border-radius: 10px;
background-color: var(--akaWhite);
}
.btn {
border: 1px solid black;
width: 35px;
height: 35px;
border-radius: 5px;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.hidden {
visibility: hidden;
}
.btnDouble {
width: 50px;
}
.btnTriple {
width: 70px;
}
.brnRShift {
width: 90px;
}
.btnBigger {
width: 40px;
}
.btnSpace {
width: 275px;
}
.btnSpecial {
font-size: 13px;
}
/* Dark mode */
.modeSwitch {
position: absolute;
top: 10px;
right: 10px;
}
.modeIcon {
font-size: 25px;
}
.lightMode,
.darkMode {
display: inline-block;
cursor: pointer;
}
.displayNone {
display: none;
}
.dark {
color: var(--akaWhite);
background-color: black;
border-color: var(--akaWhite);
}
.light {
color: black;
background-color: var(--akaWhite);
border-color: black;
}