-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (84 loc) · 1.87 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
body {
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 10%;
background: #1b052f;
}
.maincontainer h1 {
color:#1b052f;
font-size: 45px;
text-align: center;
}
form label {
display: block;
margin-bottom: 14px;
margin-left: 40px;
margin-top: 35px;
color: #1b052f;
font-size: 20px;
}
form input[type="text"] {
width: 80%;
padding: 10px;
margin:auto;
margin-left: 35px;
border-radius: 12px;
border:2px solid #ca8ffb;
box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.25);
}
form button {
background-color: #4e0e79;
color: #cfa3ff;
padding: 5px 10px;
cursor: pointer;
border-radius: 10px;
font-size: 20px;
margin-top: 20px;
}
form button:hover {
border:2px solid #ca8ffb;
}
#short-url-container {
margin-top: 20px;
}
#short-url-container p {
margin-top: 40px;
margin-bottom: 40px;
margin-left: 40px;
color: #1b052f;
font-size: 20px;
}
#short-url {
display: flex;
box-sizing: border-box;
margin-left: 40px;
}
#short-url a {
word-wrap: break-word;
margin-right: 10px;
color: #1b052f;
font-size: 18px;
}
.maincontainer {
width:75%;
height: auto;
min-height:420px;
padding: 10px;
border-radius: 20px;
box-shadow: 0px 0px 11px 4px rgba(36, 20, 59, 0.25);
background: -webkit-linear-gradient(to right, #cc8ffb, #600f89);
background: linear-gradient(to right, #ce8ffb, #600f89);
margin: auto;
}
.credit {
height: 3vh;
text-align: center;
margin-top: 98px;
font-size: 18px;
font-family:'Times New Roman', Times, serif;
color: #250d3c;
}