-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebook1.css
53 lines (43 loc) · 1 KB
/
ebook1.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
html, body {
font-family: Arial, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
body {
background: linear-gradient(-160deg, #ffccff 20%, #88ed88);
background-image: url('WhatsApp-Image-2023-09-28-at-12.50.11-AM.jpg');
}
header {
/* background-color: #007BFF; */
color: white;
background-image: linear-gradient(-60deg,#a265b6 20%,#632f7e);
text-align: center;
padding: 20px;
}
h1 {
margin: 0;
font-size: 2rem;
}
.container {
max-width: 800px;
max-height: 2000px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 5px;
box-shadow: 0 0 10px rgba(50, 9, 104, 0.1);
/* background-image: url('WhatsApp-Image-2023-09-27-at-11.38.25-PM-_1_.jpg'); */
}
.resource {
margin: 10px 0;
}
.resource a {
text-decoration: none;
color: #8c2ee4;
font-weight: bold;
transition: color 0.3s ease-in-out;
}
.resource a:hover {
color: #320472;
}