-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (85 loc) · 1.33 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(206, 12%, 95%);
font-family: "Baloo Tamma 2", cursive;
}
header {
margin-left: 100px;
padding: 30px;
}
header .title {
font-weight: bold;
font-size: 1.5em;
}
header a {
text-decoration: none;
}
a:visited {
color: #6c757d;
}
a:hover {
color: rgb(33, 150, 243);
}
header ul {
list-style-type: none;
margin: 0;
padding: 0;
float: right;
margin-right: 100px;
padding: 12.5px;
}
.heading {
padding: 70px;
}
.heading h2 {
text-align: center;
font-weight: normal;
font-family: "Montserrat", sans-serif;
}
.heading p {
text-align: center;
color: #6c757d;
letter-spacing: 0.1em;
}
.urlbox {
text-align: center;
}
#urlid {
box-sizing: border-box;
width: 360px;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
border: 0;
outline: 0;
padding: 18px 18px;
}
#submit {
background-color: dodgerblue;
text-align: center;
color: white;
border: 0;
outline: 0;
display: inline-block;
padding: 18px 18px;
transition: all 200ms ease-in;
cursor: pointer;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
}
#output {
text-align: center;
padding-top: 75px;
}
footer {
text-align: center;
padding: 20px;
position: absolute;
bottom: 0;
width: 100%;
}
#p1 {
font-weight: bold;
font-size: 1.5em;
}