-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwordBoxes.css
99 lines (84 loc) · 1.31 KB
/
wordBoxes.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
body {
font-family: Helvetica, sans-serif;
}
.container {
margin: 10px;
padding: 10px;
border: 2px solid black;
border-radius: 10px;
min-height: 100px;
display: flex;
}
.options-form {
margin: 10px;
padding: 10px;
min-height: 100px;
display: flex;
flex-direction: column;
}
.input-container {
display: flex;
align-items: center;
margin: 10px 0;
}
label {
flex: 1 auto;
font-weight: bold;
margin-right: 10px;
}
textarea,
select {
flex: 6 auto;
padding: 8px;
font-size: 16px;
border: 1px solid #aaa;
border-radius: 3px;
}
fieldset {
flex: 1 auto;
}
legend {
font-weight: bold;
}
.button-container {
flex: 0 50px;
}
.words-container {
flex: 1;
border-radius: 5px;
margin-left: 10px;
}
.add-word-button {
height: 100%;
width: 100%;
border: 0;
border-radius: 5px;
background-color: #458ce4;
color: #fff;
font-size: 30px;
}
.word {
display: inline-block;
padding: 2px 4px;
border: 1px solid #666;
border-radius: 3px;
margin: 4px;
background-color: #666;
color: #fff;
cursor: pointer;
}
.highlight {
font-style: italic;
}
.highlight.red {
background-color: #f5b7b7;
border-color: #f5b7b7;
}
.highlight.blue {
background-color: #88b8f3;
border-color: #88b8f3;
}
.highlight.green {
background-color: #92d886;
border-color: #92d886;
}