-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (73 loc) · 1.36 KB
/
style.css
File metadata and controls
86 lines (73 loc) · 1.36 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
body{
margin: 0;
background-image: url(background.jpeg);
background-repeat: no-repeat;
background-size: cover;
/* height: 100vh; */
}
.container{
background-color: rgba(0, 0, 0, 0.2);
width: 30%;
min-height: 100vh;
box-shadow: white 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
h2{
color: white;
padding-top: 150px;
}
#tesk-input{
border-radius: 20px;
border: none;
margin: 20px 0;
}
#add-button{
color: yellow;
border: none;
background: none;
}
#add-button:hover{
transform: rotate( 180deg );
}
.tesk-area{
}
.task-taps{
display: flex;
position: relative;
}
.task-taps div{
padding: 10px;
color: white;
}
#under-line{
height: 2px;
background-color: yellow;
position: absolute;
width: 48px;
left: 0;
top: 40px;
padding: 0;
transition: 0.3s;
}
.task{
display: flex;
justify-content: space-between;
padding: 10px;
}
.task-done{
text-decoration: line-through;
background-color: lightgrey;
}
.task-taps div{
cursor: pointer;
}
#task-board div{
color: white;
}
#task-board button{
color: yellow;
background: none;
border: none;
}
#task-board button:hover{
transform: rotate( 45deg );
}