forked from Sreeenandana/Url_shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (89 loc) · 1.79 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
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
*{
padding: 0px 0px;
margin: 0px 0px;
}
body{
background-color: rgb(200, 135, 243);
}
.main{
position: relative;
background-color: rgb(147, 76, 172);
height: 500px;
width: 500px;
top: 50%;
left: 50%;
transform: translate(-50%,50%);
border: 5px solid rgb(4, 3, 56);
border-radius: 20px;
}
#longurl{
position: relative;
top: 40%;
left: 10%;
height: 40px;
width: 296px;
border: 2px solid black;
border-radius: 20px;
padding-left: 10px;
padding-right: 20px;
font-size: large;
font-family: monospace;
font-weight: bold;
}
#shorten{
position: relative;
top: 40%;
left: 12%;
height: 40px;
width: 80px;
border: 2px solid black;
border-radius: 10px;
font-size: large;
font-weight: bold;
font-family: monospace;
color: white;
background-color: purple;
}
#shorten:hover{
background-color: rgb(188, 123, 235);
}
#shorturl{
position: relative;
top: 45%;
left: 10%;
height: 40px;
width: 270px;
border: 2px solid black;
border-radius: 20px;
padding-left: 10px;
padding-right: 47px;
font-size: large;
font-family: monospace;
font-weight: bold;
}
#copy{
position: relative;
top: 46%;
left: 0%;
height: 35px;
width: 35px;
border: 2px solid black;
border-radius: 10px;
color: white;
background-color: purple;
}
#copy:hover{
background-color: rgb(188, 123, 235);
}
.main p{
/* background-color: white; */
position: relative;
top: 30%;
left: 13%;
height: 60px;
width: 400px;
font-size: 50px;
font-family: monospace;
font-weight: bold;
color: rgb(241, 223, 223);
}