-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (42 loc) · 1.29 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
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #33a881; /* Light gray background */
background-image: url('pic.png'); /* Path to your background image */
background-size: cover; /* Cover the entire page */
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: rgba(255, 255, 255, 0.301); /* Semi-transparent overlay */
}
.container {
width: 100%; /* Ensures the container spans the full width */
max-width: 600px; /* Maximum width of the container */
margin: auto; /* Centers the container in the middle of the page */
text-align: center; /* Centers the text */
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
background-color: #73c4b3d8; /* White background for the container */
border-radius: 8px; /* Rounded corners */
}
.info {
margin-top: 20px;
}
h1 {
color: #000000;
margin-bottom: 0; /* Removes bottom margin from the title */
}
p {
color: #0c0c0c;
margin-top: 5px; /* Adds a small space above each paragraph */
}
#total-days-left {
color: #FF0000; /* Makes the days left count stand out */
}