-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 1.06 KB
/
style.css
File metadata and controls
58 lines (50 loc) · 1.06 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
body {
background-color: #f7f7f7;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 36px;
text-align: center;
color: #333;
margin-top: 40px;
}
p {
font-size: 18px;
color: #666;
text-align: center;
margin-top: 20px;
}
.cake-image {
display: block;
margin: 40px auto;
max-width: 100%;
height: auto;
border-radius: 8px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ff6363;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #ff4646;
}
@media (max-width: 600px) {
h1 {
font-size: 28px;
}
p {
font-size: 16px;
}
}