1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
CSS for the Text Formatter
*/
/*
Options
*/
div#grammalecte_tf_options {
display: flex;
padding: 10px;
}
div.grammalecte_tf_column {
width: 360px;
padding: 0 5px;
}
div.grammalecte_tf_groupblock {
padding: 1px 10px 10px 13px;
margin: 10px 0 15px 0;
background-color: hsl(210, 10%, 92%);
border: 0 1px 1px 1px;
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
CSS for the Text Formatter
*/
/*
Options
*/
div#grammalecte_tf_options {
display: flex;
padding: 10px;
}
div.grammalecte_tf_column {
min-width: 45%;
padding: 0 5px;
}
div.grammalecte_tf_groupblock {
padding: 1px 10px 10px 13px;
margin: 10px 0 15px 0;
background-color: hsl(210, 10%, 92%);
border: 0 1px 1px 1px;
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
background-color: hsl(210, 50%, 50%);
color: hsl(210, 0%, 100%);
}
div#grammalecte_tf_reset:hover {
background-color: hsl(210, 50%, 40%);
}
progress#grammalecte_tf_progressbar {
width: 360px;
height: 29px;
}
span#grammalecte_tf_time_res {
width: 60px;
padding: 5px 10px;
}
div#grammalecte_tf_apply {
background-color: hsl(120, 50%, 50%);
color: hsl(150, 0%, 100%);
}
div#grammalecte_tf_apply:hover {
background-color: hsl(120, 50%, 40%);
}
|
|
>
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
background-color: hsl(210, 50%, 50%);
color: hsl(210, 0%, 100%);
}
div#grammalecte_tf_reset:hover {
background-color: hsl(210, 50%, 40%);
}
progress#grammalecte_tf_progressbar {
flex-grow: 1;
height: 29px;
margin-left: 10px;
}
span#grammalecte_tf_time_res {
width: 60px;
padding: 5px 10px;
}
div#grammalecte_tf_apply {
background-color: hsl(120, 50%, 50%);
color: hsl(150, 0%, 100%);
}
div#grammalecte_tf_apply:hover {
background-color: hsl(120, 50%, 40%);
}
|