forked from Micheale-creator/final-project1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
100 lines (83 loc) · 1.63 KB
/
index.css
File metadata and controls
100 lines (83 loc) · 1.63 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400;600;700&display=swap');
html {
font-size: 16px;
}
h1 {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
h2 {
font-family: Helvetica;
text-align: left;
}
#name {
font-size: 20px;
font-weight: bold;
text-align: left;
}
#descrip {
font-size: 40px;
font-weight: bold;
text-align: left;
}
#assign {
font-size: 20px;
font-weight: bold;
text-align: left;
}
#due {
font-size: 10px;
font-weight: bold;
text-align: center;
}
.container {
border: 1px solid rgb(97, 97, 97);
width: 400px;
font-family: 'Source Sans Pro', sans-serif;
border-radius: .5rem;
margin: 10px;
overflow: hidden;
}
.container .header {
font-size: 2rem;
font-weight: 600;
color: rgb(107, 107, 107);
background-color: rgb(223, 223, 223);
padding: 10px;
}
.description {
height: 100px;
margin: 15px 20px;
font-size: 1.3rem;
}
.taskFooter {
display: flex;
justify-content: space-between;
margin: 0 10px 5px;
}
.date {
color: orange;
}
.buttonContainer {}
.container .taskFooter .buttonContainer .buttonDone {
background-color: green;
padding: 5px 10px;
border: none;
border-radius: .5rem;
display: flex;
border: 1px solid green;
justify-content: right;
color: white;
transition-duration: 0.4s;
}
.container .taskFooter .buttonContainer .buttonDone:hover {
color: green;
background-color: white;
padding: 5px 10px;
}