-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (89 loc) · 1.6 KB
/
style.css
File metadata and controls
100 lines (89 loc) · 1.6 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
*
{
margin: 0;
padding: 0;
}
body
{
width: 100vw;
height: 100vh;
background-color: rgb(134, 134, 255);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.card
{
background-color: rgb(87, 87, 255);
width: 350px;
height: 200px;
border-radius: 15px;
padding: 20px;
display: flex;
justify-content: center;
flex-direction: column;
}
.inp
{
height: 18px;
margin: 7px;
padding: 18px;
background-color: white;
border: none;
border-radius: 3px;
}
.btn
{
display: flex;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 35px;
margin: 5px 10px;
width: 100px;
height: 50px;
background-color: white;
border: none;
text-align: center;
border-radius: 3px;
}
.container
{
width: 375px;
margin: 20px;
padding: 10px 10px;
border-radius: 15px;
}
.check
{
background-color: white;
background-color: white;
width: 341px;
border: rgb(5, 5, 5);
padding: 15px 17px;
border-radius: 15px;
display: flex;
margin: 10px 0px;
flex-direction: column;
}
h1{
color: rgb(34, 34, 34);
font-family: 'Rubik', sans-serif;
font-size: 27px;
}
h2{
color: rgb(44, 44, 44);
font-family: 'Rubik', sans-serif;
font-size: 17px;
}
#delete
{
border: none;
background-color: rgb(87, 87, 255);
padding: 6px;
margin-top: 18px;
color: white;
border-radius: 3px;
float: right;
width: 70px;
}