forked from utkarshsingh99/Random-Quote-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (66 loc) · 1.22 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
body{
background-image: url("https://raw.githubusercontent.com/utkarshsingh99/Random-Quote-Generator/master/vintage-concrete.png");
animation-name: bgload;
animation-duration: 5s;
}
.background-image{
width: 1200px;
margin-left: 300px;
margin-top: 50px;
}
@keyframes bgload{
from{opacity:0;}
to{opacity: 1;}
}
.container{
position: absolute;
text-align: center;
}
.text-align{
position: absolute;
top: 55%;
left: 43%;
transform: translate(-50%,-50%);
font-family: Cookie;
font-size: 70px;
word-wrap:break-word;
}
.quote-align{
position: absolute;
top: 55%;
left: 78%;
transform: translate(-50%,-50%);
font-family: Cookie;
font-size: 60px;
}
.button{
background-color: rgb(189,183,107);
color: black;
font-size: 17px;
border-radius: 10px;
border-color: rgb(189,183,107);
padding: 15px 32px;
margin-left: 35%;
margin-top: 750px;
z-index: 1;
}
.button:hover{
background-color:white;
color: rgb(189,183,107);
}
.share-button{
margin-left: 320px;
width: 200px;
height: 50px;
border-radius: 10px;
background-color:rgb(189,183,107);
font-size: 17px;
}
.share-button:hover{
background-color: white;
color:rgb(189,183,107);
}
.tweet{
margin-left: 10px;
width: 190px;
}