forked from enniewealth209-crypto/Task-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.css
More file actions
126 lines (108 loc) · 2.21 KB
/
Copy pathtask.css
File metadata and controls
126 lines (108 loc) · 2.21 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
scroll-behavior: smooth;
}
:root {
--primary-color: #765DE4;
--secondary-color: #F5F5F5;
--text-color: #333;
--secondary-text-color: #000000;
--background-color: #fff;
}
.header-title {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
font-size: 20px;
}
a {
text-decoration: none;
color: var(--secondary-text-color);
}
h2 {
font-size: 25px;
}
.icons {
display: flex;
gap: 15px;
font-size: 25px;
}
.navbar {
display: flex;
gap: 20px;
padding: 20px;
justify-content: center;
align-items: center;
}
.navbar a {
text-decoration: none;
color: var(--text-color);
font-size: 15px;
justify-content: space-between;
}
.navbar a:active {
color: white;
border: 2px solid var(--primary-color);
border-radius: 20px;
background-color: var(--primary-color);
box-sizing: border-box;
text-align: center;
padding: 10px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 80%;
margin: 40px auto;
padding: 40px 20px;
border-radius: 20px;
box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.08);
}
.container img {
width: 250px;
height: auto;
border-radius: 0;
object-fit: contain;
}
.container h2 {
margin: 20px 0;
color: var(--text-color);
}
.container p {
color: #777;
margin-top: 10px;
margin-bottom: 25px;
max-width: 300px;
line-height: 1.6;
}
#add-btn {
position: fixed;
bottom: 30px;
right: 30px;
width: 70px;
height: 70px;
border: none;
border-radius: 50%;
background: var(--primary-color);
color: white;
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
cursor: pointer;
box-shadow: 0 10px 20px rgba(17, 17, 17, 0.4);
}
#add-btn:hover {
transform: scale(1.2)translateY(-5px);
box-shadow: 0 0 15px var(--primary-color),
0 0 30px var(--secondary-color),
0 0 60px var(--primary-color);
transition: all 0.3s ease;
}