-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_line.css
119 lines (100 loc) · 1.87 KB
/
styles_line.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
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
body, h1, h2, p, ul, li {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 0;
}
header {
padding: 1rem;
text-align: center;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
z-index: 2;
}
main {
padding: 1rem;
max-width: 800px;
margin: 0 auto;
}
.task-form, .task-list {
padding: 1rem;
margin-bottom: 1rem;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form {
display: flex;
flex-direction: column;
}
label {
margin-top: 0.5rem;
}
input[type="text"], input[type="date"], input[type="time"], select, textarea {
width: 60%;
padding: 0.5rem;
margin-bottom: 0.5rem;
border: 1px solid #ddd;
border-radius: 3px;
box-sizing: border-box;
}
textarea {
height: 100px;
resize: vertical;
}
button {
width: 20%;
padding: 0.5rem;
border: none;
border-radius: 30px;
cursor: pointer;
font-size: 1rem;
}
button:hover {
background: #4c7aae;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 1rem;
margin-bottom: 0.5rem;
border-radius: 3px;
display: flex;
flex-direction: column;
position: relative;
}
li button {
background: #d97f4f;
width: auto;
margin-top: 0.5rem;
align-self: flex-end;
}
li button:hover {
background: #c9302c;
}
.Lets_connect {
display: flex;
flex-direction: row;
justify-content: center;
gap: 1em;
align-items: center;
}
@media (max-width: 600px) {
input[type="text"], input[type="date"], input[type="time"], select {
width: calc(100% - 2rem);
}
}
footer {
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}