-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskit.css
116 lines (90 loc) · 1.79 KB
/
skit.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
font-family: 'Anton', sans-serif;
background-image: url("https://cdn.pixabay.com/photo/2017/07/08/09/49/red-2483933_960_720.jpg");
background-repeat: no-repeat;
background-size: cover;
color: white;
}
.container{
width:95%;
margin:auto;
}
.container .nav{
display:flex;
justify-content: space-between;
flex-wrap:wrap;
width:100%;
margin:25px 0;
}
.container .nav h1{
font-size:3rem;
color: white;
}
.container .nav .box{
width:400px;
text-align: center;
}
.box input{
width: 80%;
outline: none;
padding: 8px;
border: 1px solid lightgray;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.box input:focus{
box-shadow: 0 0 10px red;
border: 10x solid red;
}
.box input:hover{
box-shadow: 0 0 10px red;
border: 10x solid red;
}
.box button{
cursor: pointer;
color: grey;
padding:8px;
width: fit-content;
font-size: 15px;
transition: 1s;
outline: none;
background-color: transparent;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.box button:hover{
box-shadow: 0 0 5px red;
}
.container .todoitems{
width:500px;
margin:auto;
}
.item{
display: flex;
background-color: white;
justify-content: space-between;
width:100%;
height: auto;
border-radius: 2px;
padding:16px;
color:black;
margin-top:10px;
font-size:1rem;
text-transform: uppercase;
}
.item:hover{
box-shadow: 0 0 10px red;
}
.item i{
cursor: pointer;
margin:3px;
size: 5px;
}
.item i:hover{
box-shadow: 0 0 3px red;
}