-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (59 loc) · 1.01 KB
/
style.css
File metadata and controls
70 lines (59 loc) · 1.01 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
body {
background-image: url('image.jpg');
}
.top-div {
background-color: orange;
width: 600px;
height: 120px;
margin: auto;
margin-top: 50px;
border-radius: 10px;
position: relative;
}
.input-field {
align-self: center;
border: solid aqua 2px;
border-radius: 10px;
width: 300px;
height: 40px;
margin-left: 10px;
}
.circle {
align-self: center;
margin-left: 10px;
width: 40px;
height: 40px;
border-radius: 50%;
}
.aqua{
background-color: aqua;
}
.fas {
color: white;
}
.info {
background: red;
width: 180px;
height: 80px;
position: absolute;
left: 420px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
}
/* tasks styles */
.task {
background-color: white;
width: 600px;
height: 70px;
margin: auto;
margin-top: 50px;
border-radius: 10px;
border: solid aqua 2px;
}
.red {
background-color: red;
}
.task-input {
width: 350px;
height: 30px;
}