-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (71 loc) · 1.61 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
@import url('https://fonts.googleapis.com/css2?family=Edu+SA+Beginner&family=Montserrat&family=Roboto+Mono:ital,wght@1,300&display=swap');
body {
background-image: linear-gradient(to top, rgba(255, 255, 255, 0.5)50%,
rgba(255, 255, 255, 0.5)50%), url('https://source.unsplash.com/random');
background-size: cover;
background-position: 60% center;
height: 100vh;
overflow: hidden;
}
@media screen and (max-width: 400px) {
body {
overflow: auto;
}
}
#root{
display: flex;
place-content: center;
text-align: center;
margin: 80px auto;
}
.github-fork-ribbon:before{
background-color: #333;
}
#quote-box{
width: 32rem;
padding: 2.5rem;
backdrop-filter: blur(1);
background-color: #fff;
}
#tweet-quote{
word-break: break-all;
}
#text{
font-family: 'Montserrat', sans-serif;
background: linear-gradient(to right, #f32170,
#ff6b08, #cf23cf, #eedd44);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.jokeContainer{
padding: 18px;
}
i{
color: #ff6b08
}
#bottom-border{
width: 20px;
background: linear-gradient(to right, #f32170,
#ff6b08, #cf23cf, #eedd44);
}
#new-quote{
background: linear-gradient(to right, #f32170,
#ff6b08, #cf23cf, #eedd44);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
border: 1px dashed #ff6b08;
margin: 10px;
font-size: x-large;
padding: 12px;
outline: none;
border-radius: 15px;
}
#shareIt{
display: flex;
justify-content: space-between;
border-top: 1px dashed #ff6b08;
padding: 18px;
}
#copytoclipboard{
cursor: pointer;
}