-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (93 loc) · 1.84 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* CSS RESET - */
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
html,
body {
height: 100%;
width: 100%;
line-height: 1.5;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
background-color: #332579;
color: white;
overflow: hidden;
}
.container{
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
gap: 1rem;
align-items: center;
}
h1,h2{
background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1,h2{
-webkit-animation: hue 10s infinite linear;
}
@-webkit-keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
.quote-container{
width: 400px;
display: flex;
flex-direction: column;
}
.quote-box{
border: 5px solid;
border-image: linear-gradient(45deg,purple,orange) 1;
padding: 30px 20px;
margin-bottom: 20px;
}
#quote{
color: whitesmoke;
text-align: center;
}
#author{
float: right;
color: gray;
font-weight: bold;
font-style: italic;
margin-top: 10px;
}
.btn-mid {
text-decoration: none;
padding: 5px;
font: inherit;
font-size: 16px;
text-transform: uppercase;
line-height: 25px;
letter-spacing: 3px;
cursor: pointer;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-ms-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-white{
border: solid 2px #fff;
background: transparent;
color: #fff !important;
}
.btn-white:hover{
border: solid 2px #fff;
background: #fff;
color: #1f1f1f !important;
}
#whatsapp-share-button,#twitter-share-button{
color: red;
}