-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
74 lines (67 loc) · 1.15 KB
/
styles.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
69
70
71
72
73
74
html{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body{
transition: background-color 1s ease-out;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
color:white;
position: relative;
}
#content{
position: absolute;
top: 35%;
left: 40%;
height: 30%;
width: 70%;
margin: -15% 0 0 -25%;
font-size: 150%;
text-align: center;
}
#quote{
font-family: 'Bungee Inline', cursive;
display: none;
}
#author{
font-family: 'Bungee Inline';
text-transform: uppercase;
display: none;
}
#title{
width: 100%;
background-color: rgb(256,256,256);
text-align: center;
font-size: 150%;
font-family: 'Bungee Inline', cursive;
}
.btn{
width: 20%;
border-width: 3px;
border-color: white;
color: white;
box-shadow: 4px 5px #000000;
}
img {
max-width: 90%;
min-height: 40vh;
}
@media only screen and (max-width: 520px) {
#content{
position: absolute;
top: 15%;
left: 25%;
height: 30%;
width: 100%;
margin: -15% 0 0 -25%;
font-size: 150%;
text-align: center;
}
.btn{
width: 30%;
}
}