-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (94 loc) · 1.78 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
102
103
104
105
106
107
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(37, 37, 37);
position: fixed;
overflow-y: scroll;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.inner {
height: 80vh;
width: 60vw;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(25, 182, 255, 0.884);
}
.box {
width: 70%;
height: 70%;
background-color: #fff;
box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.232);
position: relative;
overflow: hidden;
border-radius: 5px;
}
.number {
height: 60px;
width: 150px;
position: absolute;
top: -30px;
right: -60px;
background-color: rgba(0, 0, 0, 0.158);
transform: rotate(45deg);
display: flex;
align-items: flex-end;
justify-content: center;
box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.232);
}
#tweetMe {
height: 25px;
width: 25px;
padding: 5px;
transform: rotate(-45deg);
animation: rotweet 1s linear;
}
@keyframes rotweet {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.text {
padding: 10%;
padding-bottom: 0%;
}
.start-quote {
opacity: 0.2;
font-size: 50px;
}
#quotes {
font-family: "Courier New", Courier, monospace;
font-size: 25px;
opacity: 0.8;
}
.author {
text-align: right;
font-size: 12px;
}
.newQ {
width: 100%;
font-size: 18px;
text-transform: capitalize;
color: #fff;
}
.button {
width: 100%;
height: 10%;
background-color: rgba(0, 89, 255, 0.89);
text-align: center;
position: absolute;
bottom: 0px;
display: flex;
justify-content: center;
align-items: center;
letter-spacing: 2px;
}