-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 1.4 KB
/
style.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
background: url(neom-unsplash.jpg);
}
.container {
max-width: 600px;
margin: 100px auto;
text-align: center;
background: rgba(255, 255, 255, 0.25);
border-radius: 15px;
border: #111111;
padding: 50px;
}
h1 {
margin: auto;
padding: 10px;
font-size: 4rem;
animation-delay: .5s;
animation-duration: 3s;
color: rgba(27, 27, 27);
}
#form {
margin: 50px 10px 10px 10px;
}
input[type="text"] {
width: 60%;
padding: 10px;
border: #111c;
border-radius: 5px;
margin-right: 5px;
font-size: 20px;
background-color: rgba(255, 255, 255, 0.9);
}
#shorten-btn {
font-size: 20px;
padding: 10px 10px;
border: none;
border-radius: 5px;
color: #fff;
background-color: rgb(27, 27, 27, 0.8);
cursor: pointer;
background: linear-gradient(to right, rgba(0, 255, 255, 0.7), rgba(138, 43, 226, 0.9));
}
#shorten-btn:hover {
background-color: rgba(255, 255, 255, 0.5);
color: rgba(17, 17, 17, 0.9);
font-weight: 550;
opacity: 0.9;
}
#shortened-url {
margin-top: 20px;
font-size: 30px;
padding: 2px;
color: #111111;
font-weight: bold;
font-style: oblique;
text-decoration-line: underline;
}