-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
131 lines (131 loc) · 2.71 KB
/
styles.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
*{
padding: 0;
margin: 0;
}
body{
background: rgb(179, 211, 211);
}
#wrapper{
width: 98%;
background: white;
margin: 0 auto;
box-shadow: 2px 2px 5px gray;
padding: 0px 2px;
}
h2, h3{
color: rgb(39, 34, 34);
padding: 5px 5px;
color: rgb(29, 51, 80);
}
#header{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
color: rgb(34, 81, 109);
position: sticky;
top: 0;
}
h1{
padding: 20px 20px;
}
nav{
background: rgb(179, 211, 211);
position: sticky;
top: 0;
overflow: auto;
white-space: nowrap;
}
nav a{
display: inline-block;
padding: 8px;
text-decoration: none;
font-size: 1.1rem;
color: rgb(121, 69, 2);
}
nav a:hover{
background: gray;
padding: 10px;
}
p{
line-height: 25px;
padding: 10px 10px;
font-size: 1.2rem;
}
#character-list{
font-size: 1.6rem;
color: green;
padding-top: 20px;
}
.lesson-letters{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
grid-gap: 5px;
margin: 10px 0px;
padding: 5px;
font-size: 1.8rem;
font-weight: 500;
border: 3px solid rgb(201, 169, 133);
text-align: center;
}
.lesson-letters>div, #vowel-list>div, #syllable-list>div{
background:rgb(199, 184, 53);
color: rgb(30, 90, 160);
border-radius: 2px;
padding-top: 10px;
}
#vowel-list{
display: grid;
grid-template-columns: repeat(4, minmax(30px, 1fr));
}
#syllable-list{
display: grid;
grid-template-columns: repeat(5, minmax(30px, 1fr));
}
#vowel-list, #syllable-list{
grid-gap: 5px;
margin: 10px 0px;
padding: 5px;
font-size: 1.2rem;
font-weight: 500;
border: 3px solid rgb(201, 169, 133);
text-align: center;
}
input[type="text"]{
width: 134px;
height: 36px;
border: 2px solid gray;
border-radius: 4px;
color: rgb(119, 67, 18);
text-align: center;
margin-top: 30px;
font-size: 2rem;
}
button{
height: 30px;
width: 140px;
border-radius: 4px;
background:rgb(179, 190, 24);
color: rgb(18, 63, 116);
font-weight: bold;
border: 2px solid rgb(80, 98, 114);
padding: 10px 0px;
}
legend{
color: rgb(17, 56, 24);
font-size: 1.1rem;
margin: 5px;
}
#message{
color: rgb(23, 80, 23);
font-weight: bold;
font-size: 1.3rem;
font-family: Arial, Helvetica, sans-serif;
}
footer{
background: rgb(42, 82, 82);
padding: 10px;
margin: 20px 0px;
color: white;
}
#vowels1, #vowels2, #vowels3, #syllables1, #syllables2, #syllables3, #syllables4, #syllables5, #syllables6, #syllables7, #practice-form, #character-description, #blog, #keyboard-setup, #message, #start-button, #lesson-score, #master-score{
display: none;
}