-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (48 loc) · 1.13 KB
/
style.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
body {
margin: 0px;
font-size: 10px;
height: 100vh;
background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(76,45,253,0.38728995015975143) 100%);
}
.quote-container {
display: flex;
align-items: center;
flex-direction: column;
height: 100%;
justify-content: center;
}
.hidden {
display: none;
}
.quotation {
font-size: 3rem;
font-style: italic;
max-width: 60vw;
text-align: center;
margin-bottom: 30px;
}
/*.btn-quote {*/
/* border-radius: 15px;*/
/* background-color: #8bc34a94;*/
/* padding: 15px;*/
/* font-size: 2rem;*/
/* font-style: italic;*/
/*}*/
.btn-new-quote {background-image: linear-gradient(to right, #60e35b 0%, #45B649 51%, #DCE35B 100%)}
.btn-new-quote {
margin: 10px;
padding: 15px;
text-align: center;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
font-size: 2rem;
font-style: italic;
}
.btn-new-quote:hover {
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}