-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
55 lines (46 loc) · 897 Bytes
/
app.css
File metadata and controls
55 lines (46 loc) · 897 Bytes
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
/* Your styles should be mobile-first and responsive */
/**
* If you are unclear on how to utilize a mobile-first, responsive technique to write your CSS, here is an example:
*
* https://github.com/andreacardybailey/responsive_example/blob/master/styles/responsive-base.css
*
*/
* {
box-sizing: border-box;
}
body {
font-family: "Tahona", san-serif;
color: white;
background-color: #1F0318;
}
h1, footer {
font-family: "Garamond", serif;
text-align: center;
}
main, nav, #feedback {
display: flex;
justify-content: center;
}
/* groups */
.group {
display: flex;
flex-direction: column;
}
.item {
flex: 1;
}
.item-double {
flex: 2;
}
#next-button {
display: none;
}
/* responsive media code */
@media all and (min-width: 600px) {
.group {
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 0;
}
}