-
Notifications
You must be signed in to change notification settings - Fork 1
/
general.css
68 lines (62 loc) · 1.03 KB
/
general.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
body {
background-color: #4c3f2d;
font-family: sans-serif;
}
h1 {
text-align: center;
font-family: serif;
font-weight: lighter;
color: white;
}
.container {
display: flex;
flex-direction: column;
text-align: center;
width: 50%;
margin: 20px auto 0 auto;
}
.two-columns {
display: flex;
justify-content: center;
}
.left {
margin-right: 2%;
text-align: right;
}
.right {
text-align: right;
align-content: center;
}
.generate {
border: 1px gray solid;
text-align: center;
min-width: 70%;
}
button, a {
border-radius: 5px;
padding: 5px 10px;
text-decoration: none;
color: black;
cursor: pointer;
text-align: center;
display: block;
margin: 10px auto;
font-size: 14pt;
width: 60%;
}
button:hover, a:hover {
color: white;
}
.back-button {
margin-top: 50px;
}
/* Mobile */
@media only screen and (max-width: 700px) {
.container {
width: 85%;
}
button {
font-size: 14px;
width: 60%;
}
}