-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 1 KB
/
style.css
File metadata and controls
60 lines (52 loc) · 1 KB
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
body {
margin: 0;
padding: 0;
background: linear-gradient(to right, #00c6ff, #0072ff);
height: 100vh;
font-family: 'Outfit', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.box {
background: #fff;
padding: 30px;
border-radius: 15px;
text-align: center;
width: 90%;
max-width: 400px;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
animation: fade 0.5s ease;
}
.text-area p {
margin-bottom: 20px;
font-size: 1.2rem;
color: #333;
}
#quote-writer {
font-style: italic;
color: #555;
}
button {
background-color: #0072ff;
color: white;
border: none;
padding: 10px 18px;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #004fc4;
}
@keyframes fade {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}