-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
66 lines (59 loc) · 1.11 KB
/
main.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
/* Random Quote Generator main.css */
body{
font-family: 'Exo', sans-serif;
background-color: #000;
background-image: url("https://i.ytimg.com/vi/voWpbz1De_M/maxresdefault.jpg");
color: #fff;
}
.container{
width: 800px; /* Is there a reason to put both px and/or ems vs %? should I even include this? */
width: 50%;
margin: 10px auto;
padding: 10px;
}
/*siteSplash section*/
#starWarsLogo{
width: 80%;
height: 80%;
}
#siteSplash{
text-align: center;
}
#siteSplash a{
text-decoration: none;
color: #AAA;
}
#siteSplash a:hover{
color: #FFBF00;
}
#siteSplash h1{
background-color: #000;
border-style: solid;
border-radius: 10px;
border-color: #FFBF00;
color: #FFBF00;
}
/* well quoteSpace section */
#quoteSpace{
width:75%;
text-align: center;
color: #000;
}
#quotePerson{
font-style: italic;
font-weight: 600;
}
/* quoteBtn section */
#quoteBtn{
text-align: center;
}
/* quoteTweet section (footer) */
footer{
text-align: center;
}
/* DO I NEED MEDIA QUERIES? */
@media screen and(max-width: 760px){
#quoteBtn,#.addNew{
display: block;
}
}