-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (80 loc) · 1.26 KB
/
styles.css
File metadata and controls
94 lines (80 loc) · 1.26 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
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: sans-serif;
font-size: 17px;
padding: 1em;
}
.toggle-wrap a {
display: inline-block;
background: #444;
border-radius: 1000px;
position: relative;
width: 3em;
height: 1.25em;
vertical-align: middle;
margin: 0 0.5em;
}
.toggle-wrap strong {
display: none;
}
.switch {
position: absolute;
top: 0.1em;
left: 0.15em;
height: 1em;
width: 1.5em;
background: #fff;
border-radius: 1000px;
transition: 0.3s;
}
.alt .switch {
left: calc(100% - 1.6em);
}
.numgroups-wrap {
display: none;
}
.alt .numgroups-wrap {
display: inherit;
}
.alt .pergroup-wrap {
display: none;
}
input, textarea, button {
font-size: 1em;
padding: 0.25em;
}
.groups {
padding: 1em;
background: #c22747;
margin: 1em 0;
display: flex;
justify-content: space-evenly;
}
.group {
display: inline-block;
vertical-align: top;
background: #fff;
padding: 1em;
margin: 0.25em;
width: 18%;
border-radius: 3px;
box-shadow: 0 0 0.5em rgba(0,0,0,0.1);
}
.group h2 {
margin: 0;
}
h1 {
text-align: center;
}
.container {
display: flex;
flex-direction: row;
justify-content: center;
}
div.image {
padding: 120px 0 0 70px;
}