-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (53 loc) · 979 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (53 loc) · 979 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
display: flex;
flex-direction: column;
background-color: rgb(128, 0, 255);
align-items: center;
justify-content: center;
row-gap: 3rem;
}
.heading{
display: flex;
margin-top: 10rem;
font-size: 3rem;
font-weight: 900;
text-decoration: underline;
}
p{
text-transform: capitalize;
}
.userinput{
position: relative;
}
.userinput input{
height: 3rem;
width: 50vw;
font-size: 2rem;
font-weight: 600;
font-style: italic;
color: rgb(56, 183, 82);
background-color: black;
border: 4px solid white;
}
.userinput i{
position: absolute;
right: 2%;
top: 20%;
size: 8rem;
}
.addeditems{
display: flex;
flex-direction: column;
gap: 2rem;
width: 50vw;
border-radius: 2rem;
}
.addeditems div{
background-color: rgb(6, 6, 6);
border-radius: 2rem;
color: azure;
}