-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
79 lines (78 loc) · 1.62 KB
/
index.css
File metadata and controls
79 lines (78 loc) · 1.62 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
/*
Name: Vandit Parekh
Student No.: 200412374
*/
/*Adding some styles to the whole css*/
*{
margin: auto;
background-color: bisque;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/*Specific styles to header and footer to bring the content between the screen*/
header, footer
{
text-align: center;
font-size: small;
}
/*Configuring the divisions for the ToDo's*/
.addItem, .completedItem
{
padding: 50px;
margin: 20px;
background-color: antiquewhite;
}
/*Adding some universal styles to label*/
label{
cursor: pointer;
font-size: 25px;
padding: 10px;
margin: auto;
}
/*Adding some universal styles to input*/
input{
cursor: pointer;
}
/*Adding some universal styles to button*/
button{
position: relative;
margin: 10px;
padding: 10px;
text-align: center;
font-size: 20px;
background-color: aqua;
border-radius: 10px;
font-weight: bold;
cursor: pointer;
}
/*Styling the area where the user inputs and submits a ToDo*/
.mainList
{
background-color: aliceblue;
padding: 20px;
margin: 20px;
align-items: center;
}
/*Making the text input a little bigger and some other minor modifications*/
#inputText
{
padding: 20px;
margin: 20px;
background-color: black ;
text-align: center;
color: aliceblue;
font-size: 20px;
border: none;
}
/*Configuring the submit button to make it stand out */
#submitButton
{
text-align: center;
font-size: 20px;
font-weight: bold;
color: aqua;
background-color: brown;
border-radius: 10px;
padding: 20px;
margin: 20px;
border-color: white;
}