-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdungankeyboard.css
93 lines (92 loc) · 1.25 KB
/
dungankeyboard.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
.verb{
color: #dc3958
}
.noun{
color: #889b4a
}
.positional{
color: #8ab1b0;
}
.adjective{
color: #f06431;
}
.idk{
color: #98676a;
}
body{
background-color: #221a0f;
}
*{
font-family: 'Noto Sans';
}
/**/
#keyboard{
width: 80%;
margin-left: 15%;
margin-right: 5%;
height: calc((66px + 2%) * 3);
}
.key{
background-color: #fdf6e3;
height: 66px;
width: 50px;
float: left;
margin: 1%;
border: none;
}
.key:hover{
background-color: #2aa198;
}
.main, .latin{
line-height: 0%;
text-align: center;
text-transform: capitalize;
font-weight: 900;
}
.main{
color: #dc322f;
font-size: 28px;
}
.latin{
font-size: 14px;
color: #cb4b16;
}
.row{
width: 80%;
float: left;
}
#row2{
margin-left: 15px;
}
#row3{
margin-left: 30px;
}
#entry{
background-color: #fdf6e3;
}
textarea{
width: 90%;
margin-left: 5%;
margin-right: 5%;
resize: none;
background-color: #fbebd4;
color: #a57a4c;
font-size: 36px;
height: 300px;
}
div{
color: #fbebd4
}
#result{
font-size: 36px;
border: 1px white solid;
padding: 2px;
float: left;
height: 100px;
width: 90%;
margin: 5%;
overflow: scroll;
}
span{
font-size: 22px;
}