-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasiraklav.css
142 lines (122 loc) · 2.8 KB
/
tasiraklav.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body {
font-size: 24px;
width: 100%;
height: 100vh;
min-height: 1300px;
min-width: 830px;
background-color: antiquewhite;
}
.container-sm {
min-width: 830px;
}
ul {
list-style-type: square;
}
.klaviatura-container {
width: 600px;
height: 180px;
display: grid;
grid-template-columns: 420px;
cursor: pointer;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
.klaviatura-flex-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1000px;
min-width: 830px;
margin: auto;
}
.controls-container {
display: flex;
width: 230px;
height: 100%;
flex-direction: column;
justify-content: space-around;
font-size: 18px;
}
.control-group {
padding-top: 10px;
padding-bottom: 10px;
border-bottom: black solid 1px;
}
.control-group:first-child {
border-top: black solid 1px;
}
.augsina {
width: 600px;
display: grid;
grid-template-columns: 40px 40px 20px 40px 40px 40px 40px 20px 40px 20px 40px 40px 40px 40px 20px 40px 40px;
grid-template-rows: 100px;
column-gap: 0px;
row-gap: 0px;
background-color: whitesmoke;
padding: 0px;
}
.augsina > div, .apaksina > div {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.freq-indicator {
font-size: 12px;
padding-top: 3px;
padding-bottom: 3px;
}
.apaksina {
width: 600px;
display: grid;
grid-template-columns: 60px 60px 60px 60px 60px 60px 60px 60px 60px 60px;
grid-template-rows: 80px;
column-gap: 0px;
row-gap: 0px;
background-color: whitesmoke;
padding: 0px;
}
.augsina > div {
text-align: center;
border-top: solid 1px black;
border-left: solid 1px black;
border-right: solid 1px black;
}
.apaksina > div{
border-left: solid 1px black;
border-right: solid 1px black;
border-bottom: solid 1px black;
}
#k1, #k5, #k6, #k12 {
background-color: whitesmoke;
}
#k2, #k4, #k7, #k9, #k11, #k14, #k16{
color: white;
background-color: black;
}
#pills-tab, .tab-content {
font-size: 18px;
}
footer {
position: fixed;
bottom: 0;
padding-bottom: 20px;
padding-top: 20px;
padding-left: 5%;
width: 100%;
border-top: black solid 1px;
background-color: whitesmoke;
}
footer img {
margin-left: 10px;
opacity: 60%;
transition: ease-in-out 200ms;
}
footer img:hover {
opacity: 100%;
}