-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtime.css
More file actions
60 lines (54 loc) · 1.19 KB
/
time.css
File metadata and controls
60 lines (54 loc) · 1.19 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #ffccdd, #ffe0f0);
font-family: 'Comic Sans MS', cursive, sans-serif;
}
.container {
text-align: center;
background: rgba(255, 255, 255, 0.9);
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 500px;
}
h1 {
font-size: 2.5em;
color: #ff6f61;
margin-bottom: 20px;
}
.activity {
border: 2px dotted #ff6f61;
padding: 20px;
margin: 20px 0;
height: 200px;
overflow-y: auto;
background-color: #fff;
border-radius: 10px;
font-size: 1.2em;
color: #555;
}
button {
padding: 10px 20px;
border: none;
border-radius: 20px;
background-color: #ff6f61;
color: white;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
margin: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
button:hover {
background-color: #ff3d30;
transform: scale(1.05);
}