forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (75 loc) · 1.32 KB
/
style.css
File metadata and controls
84 lines (75 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css?family=Abel');
@import url('https://fonts.googleapis.com/css?family=Karla');
body {
background-color: #2E2C2F;
font-family: Karla;
margin: 40px;
color: #F4F4ED;
font-size: 30px;
}
h4 {
text-decoration: underline;
}
a:visited {
color: turquoise;
}
section {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 85%;
height: auto;
background-color: #2E2C2F;
text-align: center;
}
.wrapper {
font-family: Abel;
text-align: left;
padding-top: 25px;
padding-bottom: 25px;
font-size: 20px;
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
background-color: #2E2C2F;
color: #444;
}
.box {
background-color: #313638;
color: #C6C5B9;
border-radius: 5px;
font-size: 100%;
min-width: 200px;
min-height: 400px;
}
img {
width: auto;
height: 500px;
padding: 10px;
margin: 10px;
}
#quoteSpace {
padding: 20px;
font-family: Abel;
font-size: 25px;
font-style: italic;
}
#footer {
font-size: 20px;
}
@media screen and (max-width: 600px) {
img {
display: none;
}
@media only screen and (max-width: 800px) {
.wrapper {
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr
}
.box {
height: 400px;
}