-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (70 loc) · 1.23 KB
/
styles.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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.header {
text-align: center;
padding: 20px 0;
}
.header h1 {
margin: 0;
font-size: 30px;
font-weight: bold;
}
.header p {
margin: 10px 0;
font-size: 18px;
}
.loader {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.slide {
width: 100%;
display: block;
margin-bottom: 20px;
transition: transform 0.5s ease-in-out;
}
.slide:hover {
transform: scale(1.1);
}
.center {
text-align: center;
padding: 20px;
}
.view-btn {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: #ffffff;
text-decoration: none;
font-size: 18px;
border-radius: 5px;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #f3f3f3;
}
footer p {
margin: 0;
font-size: 14px;
}