-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (114 loc) · 2.68 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
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Marhey:[email protected]&family=Merienda:[email protected]&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Zeyada&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:[email protected]&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f6f7f9;
color: #333;
background-repeat: no-repeat;
background-size: cover;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color:transparent;
text-align: center;
padding: 20px 0;
}
h1 {
margin: 0;
color: #9BCF53;
font-size: 2.5em;
font-family: 'Marhey', sans-serif;
}
main {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
}
.quote-container {
text-align: center;
}
button {
background-color: #ff6f61;
color: #fff;
padding: 15px 30px;
font-family: 'Libre Baskerville', sans-serif;
border: none;
border-radius: 30px;
cursor: pointer;
font-size: 1.3em;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #ff4d4d;
}
#quote-container {
margin-top: 20px;
padding: 30px;
background-color: #fff;
border: 2px solid #1D24CA;
border-radius: 20px;
font-family: 'Cinzel', sans-serif;
font-style: italic;
font-weight: 500;
font-size: 1.6em;
color: #1B1A55;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
opacity: 0;
transition: opacity 0.5s ease;
background-repeat: no-repeat;
background-size: cover;
}
#quote-container.show {
opacity: 1;
}
#category {
padding: 10px;
border-radius: 3rem;
color: #000000;
background-color: antiquewhite;
cursor: pointer;
border: none;
font-size: 1.3em;
font-family: 'Montserrat Alternates', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
select option:hover{
cursor: pointer;
}
footer {
background-color: transparent;
color: #fff;
padding: 20px;
text-align: center;
display: flex;
justify-content: space-between;
align-items: center;
height: 1em;
}
.social-media a {
text-decoration: none;
color: #fff;
margin: 0 10px;
font-size: 1.5em;
margin-right: 1em;
}
.social-media{
margin-right: 10em;
}
.footer-info p {
margin: 5px 0;
font-family: 'Merienda', sans-serif;
}
.author{
font-family: 'Zeyada', sans-serif;
font-size: 2em;
}
.copyright-info{
font-family: 'Playfair Display', sans-serif;
}