-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (75 loc) · 1.37 KB
/
style.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
*
{
margin: 0;
padding: 0;
font-family: sans-serif;
box-sizing: border-box;
}
body
{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: rgb(105, 52, 127);
}
.conatiner
{
padding: 30px 40px;
background: #fff;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.conatiner .box
{
max-width: 100%;
display: flex;
padding: 20px 30px;
}
.conatiner .box .inputbox input
{
padding: 10px 20px;
border: none;
outline: none;
background: #f1f3f4;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.conatiner .box .btn button
{
padding: 10px 20px;
background: #0cc0df;
border: none;
outline: none;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
cursor: pointer;
}
.conatiner .list
{
padding: 10px 20px;
width: 100%;
}
.conatiner .list .new_list
{
padding: 10px 20px;
border-radius: 10px;
background: #f1f3f4;
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.conatiner .list .new_list .check input
{
border-radius: 50%;
}
.conatiner .list .new_list .text p
{
font-size: 14px;
}
.conatiner .list .new_list .del i
{
font-size: 14px;
cursor: pointer;
color: crimson;
}