-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
64 lines (55 loc) · 1014 Bytes
/
App.css
File metadata and controls
64 lines (55 loc) · 1014 Bytes
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
body {
background: linear-gradient(to bottom right, #f0f8ff, #dfe9f3);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 20px;
margin: 0;
}
header {
text-align: center;
padding: 1rem;
background-color: #4a90e2;
color: white;
border-radius: 12px;
margin-bottom: 20px;
}
h1 {
font-size: 2rem;
}
.blog-post {
background-color: white;
border-radius: 16px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
padding: 1rem 1.5rem;
margin: 1rem auto;
max-width: 600px;
transition: transform 0.2s;
}
.blog-post:hover {
transform: scale(1.02);
}
.blog-title {
color: #333;
margin-bottom: 0.5rem;
}
.blog-body {
font-size: 1.1rem;
line-height: 1.6;
}
.meta {
font-size: 0.9rem;
color: #888;
margin-bottom: 1rem;
}
button {
padding: 8px 14px;
border: none;
border-radius: 8px;
background-color: #ff7675;
color: white;
cursor: pointer;
margin-right: 10px;
transition: background-color 0.2s;
}
button:hover {
background-color: #d63031;
}