-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurl.css
107 lines (92 loc) · 1.62 KB
/
url.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
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
104
105
106
107
html {
font: normal 20px/1.5 sans-serif;
}
body{
margin: 0;
background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
}
h1 {
text-align: center;
color: white;
}
h3{
font-size: larger;
color: white;
}
h4 {
font-size: large;
text-align: center;
width: 340px;
}
a{
color: rgb(56, 56, 236);
}
#longurl{
width: 340px;
overflow-wrap: break-word;
}
.header {
position:relative;
text-align:center;
color:white;
height: 100vh;
}
.flex { /*Flexbox for containers*/
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
input{
width: 300px;
height: 40px;
background: none;
border: none;
border-bottom: 2px solid white;
margin: 15px;
outline: none;
font-size: 1.2rem;
color: white;
padding: 0 10px;
}
form, div {
padding: auto;
margin-top: 30px;
}
.form-box {
clear: both;
width: 90%;
position: relative;
}
.form-box input {
font-size: 1rem;
width: 500px;
margin-left: 50px;
padding: 0.25rem 1rem;
background: none;
}
.error::after {
font-size: 1rem;
line-height: 1.8;
width: 350px;
padding-left: 1rem;
position: absolute;
right: 0;
content: attr(data-errormsg);
}
img{
display: block;
margin: 30px auto;
}
@media (max-width: 768px) {
.form-box input{
width: 230px;
}
.header {
height:100vh;
}
h1 {
font-size:24px;
}
}