-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (81 loc) · 1.34 KB
/
styles.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
* {
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
/* Full Container Styling Starts */
#container {
width: 500px;
margin: 0 auto;
}
#total-tasks {
margin-bottom: 20px;
font-size: 13px;
margin-left: 2px;
color: gray;
}
.fa-clipboard-list {
display: flex;
font-size: 1.3rem;
position: absolute;
margin: 10px;
}
.fa-plus {
font-size: 1.3rem;
}
#add-task-button {
position: relative;
right: -450px;
padding: -1px 15px;
top: -35px;
height: 21px;
width: 25px;
background: none;
border: none;
cursor: pointer;
}
/* Input Box Styling */
.add-task {
width: 100%;
outline: none;
font-size: 18px;
padding: 11px;
border: 2px solid #dddddd;
margin-bottom: 3px;
text-align: center;
}
/* Full Container Styling Ends */
/* Delete Button Styling Starts */
.delete {
height: 28px;
padding: 5px 0px;
border-radius: 3px;
}
.delete:hover {
background: #f2f2f2;
cursor: pointer;
}
/* Delete Button Styling Ends */
/* Heading Style */
h1 {
text-align: center;
}
/* Table Styling Starts */
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 500px;
margin: 0 auto;
}
td,
th {
border: 2px solid #dddddd;
text-align: center;
padding: 8px;
}
tbody tr:nth-child(even) {
background-color: #a6a2a2;
}
tbody td:hover {
background: #e4e1e6;
}
/* Table Styling Ends */