-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (67 loc) · 1.09 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
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}
body{
background: #928cff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
gap: 30px;
}
.inputs{
background: #fff;
padding: 10px;
border-radius: 10px;
width: 300px;
height: 120px;
display: flex;
flex-direction: column;
gap: 10px;
justify-content: center;
align-items: center;
}
h2{
font-size: 32px;
text-align: center;
}
.data{
display: flex;
flex-direction: column;
width: 80%;
gap: 4px;
}
.data input{
padding: 4px;
outline: none;
border: 1px solid #928cff;
}
.data button{
background: #928cff;
color: #fff;
border: none;
cursor: pointer;
padding: 5px;
}
.list{
display: flex;
justify-content: space-around;
width: 100%;
align-items: flex-start;
}
.box{
background: #fff;
padding: 10px;
border-radius: 10px;
width: 200px;
}
.item{
background: #928cff;
padding: 10px;
margin: 4px;
cursor: move;
color: #fff;
}