-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (39 loc) · 1.02 KB
/
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
body {
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
color: #f8f8f2;
background-color: rgba(0, 0, 0, 0.8);
overflow: hidden;
}
.container {
text-align: center;
padding: 20px;
border-radius: 20px;
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.15);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: auto;
max-width: 600px;
box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.26);
}
.date-time {
font-size: 2em;
font-weight: 600;
margin: 10px 0;
padding: 10px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease-in-out;
box-shadow: 15px 15px 10px rgba(14, 14, 14, 0.26);
}
.date-time:hover {
transform: scale(1.05);
background-color: rgba(255, 255, 255, 0.2);
}