-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
56 lines (49 loc) · 908 Bytes
/
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
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(120deg, #a1c4fd, #c2e9fb);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
}
.container {
text-align: center;
padding: 40px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
animation: fadeIn 0.8s ease-out;
margin: 20px;
}
h1 {
margin-bottom: 20px;
color: #333;
}
p {
margin-bottom: 20px;
color: #555;
}
ul {
list-style: none;
padding: 0;
margin: 20px 0;
}
ul li {
margin-bottom: 10px;
}
a.button {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease-in-out;
}
a.button:hover {
background-color: #0056b3;
}