forked from letterly/letterly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlingua.css
More file actions
124 lines (124 loc) · 2.17 KB
/
lingua.css
File metadata and controls
124 lines (124 loc) · 2.17 KB
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
h1{
text-align: center;
color: white;
font-family: Arial;
font-weight: 700;
font-size: 48px;
}
h2{
text-align: center;
color: white;
font-family: Arial;
font-weight: 700;
text-decoration: underline;
font-size: 36px;
margin-left: 40px;
margin-right: 40px;
}
p{
color: white;
font-family: Arial;
font-weight: 700;
font-size: 24px;
margin: 16px;
padding: 4px;
}
#background p, #background h1, #background h2{
background-color: #00000066;
}
#background{
display: none;
background-image: url('images/forest.jpg');
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
}
#langselect{
background-color: #fdf6e3;
width: 100%;
height: 100%;
}
#langselect h1, #langselect p{
color: #073642;
}
#workspace{
display: none;
background-color: #fdf6e3;
height: 100%;
}
#problemheader, #problem{
background-color: #fdf6e3;
color: black;
text-align: center;
}
body{
margin: 0;
}
#problemInput{
outline: none;
border: none;
border-radius: 5px;
font-size: 32px;
width: 60%;
margin-left: 20%;
margin-right: 20%;
background-color: #073642;
color: white;
}
#problemInput::placeholder{
color: #657b83;
}
#problemButton{
outline: none;
border: none;
border-radius: 5px;
font-size: 32px;
width: 30%;
margin-left: 35%;
margin-right: 35%;
background-color: #268bd2;
color: white;
}
#submitButton{
outline: none;
border: none;
border-radius: 5px;
font-size: 32px;
width: 30%;
margin-left: 35%;
margin-right: 35%;
background-color: #cb4b16;
color: white;
display: none;
}
#table{
display: none;
font-family: Arial;
font-size: 24px;
width: 20%;
margin-left: 42%;
margin-right: 40%;
}
td{
border: 2px black solid;
}
.wrong{
background-color: #fdf6e3;
color: #dc322f;
}
.right{
background-color: #fdf6e3;
color: #859900;
}
.course{
font-family: Arial;
font-size: 36px;
background-color: #cb4b16;
width: 30%;
height: 100px;
margin: 20px;
text-align: center;
color: #fdf6e3;
border-radius: 10px;
}