-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
37 lines (32 loc) · 832 Bytes
/
app.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
/* UI Components try to respect [BEM](http://getbem.com/naming/) for the naming of their CSS classes */
@import "./components/PageHeader.css";
@import "./components/Breadcrumb.css";
@import "./components/CandidateWithCheckbox.css";
@import "./components/ClassicVoteCandidatesList.css";
@import "./components/QuestionWithVotableAnswers.css";
@import "./components/PageFooter.css";
@import "./components/VoteNavigation.css";
@import "./components/NiceButton.css";
@import "./components/ClassicVoteReview.css";
body {
background: #E5E4E2;
font-family: 'Ubuntu', arial, serif;
font-weight: lighter;
}
@media screen and (max-width: 640px) {
body {
margin: 0;
}
}
@media screen and (min-width: 640px) {
body {
margin: 8px;
}
}
.page {
max-width: 800px;
margin: 0 auto;
}
.page-body {
background: white;
}