-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathURLShortener.html
103 lines (93 loc) · 1.86 KB
/
URLShortener.html
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
101
102
103
body {
font-family: Arial, sans-serif;
padding: 20px;
background: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
html, body {
height: 100%;
}
.maincontainer h1{
color:#fff;
text-align: center;
}
form label {
display: block;
margin-bottom: 20px;
margin-left: 10px;
color: #fff;
}
form input[type="text"] {
width: 90%;
padding: 10px;
margin:auto;
border-radius: 20px;
border:2px solid #8f94fb;
box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.25);
}
form button {
background-color: #fff;
color: #8f94fb;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 10px;
font-size: 25px;
margin-top: 20px;
}
form button:hover{
border:2px solid #8f94fb;
}
#short-url-container {
margin-top: 20px;
}
#short-url-container p{
text-align: center;
color: #fff;
}
#short-url {
display: flex;
align-items: center;
justify-content: center;
}
#short-url a {
word-wrap: break-word;
margin-right: 10px;
color: #fff;
}
.maincontainer
{
width:80%;
height: auto;
min-height:350px;
padding:40px;
border-radius: 30px;
box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.25);
background: #4e54c8;
background: -webkit-linear-gradient(to right, #8f94fb, #4e54c8);
background: linear-gradient(to right, #8f94fb, #4e54c8);
margin: auto;
}
#copy-btn{
background-color: #fff;
color: #8f94fb;
border: none;
padding: 5px 10px;
cursor: pointer;
border-radius: 10px;
font-size: 25px;
margin-top: 20px;
}
.credit a {
text-decoration: none;
color: #000;
font-weight: 800;
}
.credit {
text-align: center;
margin-top: 10px;
font-family: Verdana,Geneva,Tahoma,sans-serif;
}