forked from sailaja22/Quotegenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (97 loc) · 1.8 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
108
109
110
111
112
113
114
115
116
117
118
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #cfd9f1;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
font-size: 30px;
padding: 0.5% 1.5%;
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
border-radius: 15px;
margin: 10px;
width: 45vw;
height: 45vh;
}
.title {
font-weight: bold;
font-size: 40px;
}
.content {
height: 65%;
display: flex;
flex-direction: column;
align-items: center;
width: 100% !important;
font-size: 75%;
padding: 4% 0;
}
.fa-quote-left {
justify-self: flex-start;
align-self: flex-start;
}
.quote {
padding: 0% 4.8%;
height: 80%;
font-weight: lighter;
display: flex;
align-items: center;
text-align: center;
overflow-x: scroll;
overflow-y: scroll;
}
.quote::-webkit-scrollbar {
display: none;
}
.fa-quote-right {
justify-self: flex-end;
align-self: flex-end;
}
.buttons {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 16%;
}
.buttons i:is(:hover, .active) {
color: rgb(117, 117, 117);
}
.new {
font-size: 13px;
border-radius: 16px;
cursor: pointer;
padding: 10px;
color: #000000;
background-color: rgb(233, 233, 233);
border: #585858;
}
.new:hover {
color: rgb(255, 255, 255);
background: rgb(0, 0, 0);
}
@media only screen and (max-width: 700px) {
.container {
width: 90vw;
height: 50vh;
padding: 3.5% 4.5%;
}
.title {
font-size: 32px;
}
.content {
font-size: 75%;
height: 55%;
}
}