-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.css
47 lines (38 loc) · 819 Bytes
/
delete.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
body {
background-image: url('https://media.discordapp.net/attachments/916177621874769970/978944928900079636/SPOILER_0_0_AdobeCreativeCloudExpress.gif');
background-size: cover;
height: 100vh;
width: 700px;
margin: top 20px;
}
div {
color: blue;
background-color: lightblue;
margin-top: 200px;
display: block;
text-align: center;
border-radius: 20px 20px 20px 20px;
opacity: 65%;
padding: 20px;
}
input {
width: 100px;
border: 3px solid greenyellow;
margin: 3px;
border-radius: 20px;
transition: width .2s;
}
input:hover {
width: 150px;
}
button {
font-size: x-small;
color: blueviolet;
width: 150px;
border-radius: 20px;
transition: width .2s;
}
button:hover {
background-color: lightblue;
width: 200px;
}