-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
136 lines (120 loc) · 2.21 KB
/
Copy pathstyles.css
File metadata and controls
136 lines (120 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
127
128
129
130
131
132
133
134
135
136
* {
font-family: 'Poppins', sans-serif;
background-color: floralwhite;
text-align: center;
color: rgb(22, 22, 22);
background-color: transparent;
margin: 0;
h1 {
font-size: 36px;
color: deeppink;
}
}
nav {
background-color: rgb(255, 223, 230);
padding: 10px;
margin-bottom: 20px;
border-bottom: 1px solid deeppink;
}
.btn {
font-size: 16px;
padding: 10px 20px;
border: 1px solid deeppink;
background-color: rgb(255, 223, 230);
color: rgb(69, 13, 42);
text-decoration: none;
cursor: pointer;
margin: 5px;
}
.nav-item {
font-size: 16px;
border: none;
padding: 10px 20px;
background-color: transparent;
}
/* TASK FORM START */
form div {
margin: 15px;
}
label {
display: flex;
flex-direction: column;
padding-bottom: 5px;
font-size: 20px;
}
textarea,
select,
input {
font-size: 16px;
padding: 5px 10px;
border: 1px solid pink;
color: rgb(69, 13, 42);
}
textarea {
resize: none;
height: 100px;
}
/* TASK FORM END */
/* TASK CARD START */
.card {
border: 1px solid deeppink;
border-radius: 2px;
background-color: rgb(255, 223, 230);
color: rgb(69, 13, 42);
margin: 40px;
width: 300px;
height: auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
box-shadow: inset 8px 8px 0px pink;
padding: 15px;
}
.card-body {
display: flex;
flex-direction: column;
height: 100%;
}
.card-title {
font-size: 25px;
font-weight: bold;
margin-bottom: 10px;
}
.badge {
font-size: 14px;
padding: 5px 10px;
border-radius: 3px;
font-weight: bold;
justify-content: space-between;
color: rgb(69, 13, 42);
}
/* TASK CARD END */
/* TASK DETAILS START */
.list-unstyled {
list-style: none;
padding: 10px;
font-size: 18px;
strong {
color: rgb(69, 13, 42);
}
}
.task-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.task-description {
font-size: 18px;
margin-bottom: 10px;
}
/* TASK DETAILS END */
/* DASHBOARD START */
.dashboard {
display: flex;
flex-direction: column;
gap: 50px;
h1 {
margin-bottom: 50px;
}
}
/* DASHBOARD END */