-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (51 loc) · 1.02 KB
/
style.css
File metadata and controls
57 lines (51 loc) · 1.02 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
html, body{
width: 50%;
margin: 0 auto;
background-color: #0a192f;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
.container{
width: 400px;
}
#inputField{
width: 300px;
height: 46px;
border-width: 0;
font-size: 1.4rem;
vertical-align: middle;
border: 2px solid rgba(77, 181, 255, 0.4);
outline: none;
background-color: transparent;
border-radius: 0.5rem;
color: white;
padding-left: 1rem;
}
#addToDo{
width: 50px;
height: 50px;
margin-left: 8px;
border-radius: 0.5rem;
vertical-align: middle;
font-size: 30px;
cursor: pointer;
border: 2px solid rgba(77, 181, 255, 0.4);
background-color: transparent;
color: white;
}
.paragraph-styling{
margin: 10;
cursor: pointer;
font-size: 20px;
background-color: #64ffda;
border-radius: 0.4rem;
color: black;
padding: 1.1rem;
transition: all 0.5s ease;
}
.paragraph-styling:hover{
transform: scale(1.05);
}
.to-dos{
margin-top: 25px;
}