-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (61 loc) · 1.17 KB
/
style.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
body {
background-color: #f7f7f7;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.spacer {
flex: 1;
}
.footer {
height: 30px;
background-color: #c7c7c7;
text-align: center;
}
h1 {
text-align: center;
margin: 20px;
}
.center {
text-align: center;
}
ol#words {
display: none;
column-count: 5;
column-width: 13em;
padding: 0;
text-align: center;
list-style-position: inside;
margin-bottom: 0;
}
ol#words hr {
width: 100%;
margin: 20px auto 10px auto;
column-span: all;
}
#word_wrapper {
display: none;
text-align: center;
margin: 30px auto;
padding: 10px;
width: 90%;
box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
#word_form, #word_form .row {
align-items: center;
justify-content: center;
}
.alert {
max-width: 500px;
margin: 50px auto;
/*text-align: center;*/
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#loader {
margin: 30px auto;
display: none;
}
#more_button {
margin: 20px auto;
}