-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (76 loc) · 1.44 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
75
76
77
78
79
80
body {
margin:0;
padding:0;
background-image:url("https://i.ibb.co/phfKQGt/image.png");
background-size:cover;
background-repeat:no-repeat;
display:flex;
align-items:center;
justify-content:center;
font-family:sans-serif;
}
.container {
width:80%;
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
color:white;
background:rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
overflow:hidden;
}
.change-quote-container {
width:30%;
height:fit-content;
position:relative;
display:flex;
align-items:center;
justify-content:center;
margin-top:5%;
}
@media screen and (max-width:650px) {
.change-quote-container {
width:80%;
}
}
.arrow {
border:solid black;
border-width: 0 3px 3px 0;
width:10px;
height:10px;
display: inline-block;
padding: 3px;
cursor:pointer;
opacity:0;
}
#next {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
position:absolute;
right:0;
}
#prev {
transform:rotate(130deg);
-webkit-transform:rotate(130deg);
position:absolute;
left:0;
}
h1 {
font-size:20px;
margin:10px;
padding:20px;
}
button {
border:2px solid black;
color:white;
background:transparent;
cursor:pointer;
height:50px;
margin-top:5%;
font-family:sans-serif;
}