-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshortner.css
More file actions
56 lines (46 loc) · 897 Bytes
/
Copy pathshortner.css
File metadata and controls
56 lines (46 loc) · 897 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
56
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to top left, #8585ff, #ff7878fd);
}
.container{
background: linear-gradient(to top right, #ff3636fd, #6868ff);
padding: 1.2rem;
border-radius: .6rem;
border: 2px solid blueviolet;
}
h1{
margin: 1rem 0;
}
input{
width: 100%;
padding: 0.9rem;
margin: 1.2rem 0;
border: 1px solid #ccc;
border-radius: 4px;
}
button{
transition: all .2s linear;
background-color: #4c6faf;
color: #fff;
padding: .7rem .9rem;
border: none;
border-radius: .4rem;
cursor: pointer;
}
button:hover{
background-color: #3e518e;
}
#result{
margin-top: 10px;
}