-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (64 loc) · 1.33 KB
/
style.css
File metadata and controls
74 lines (64 loc) · 1.33 KB
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
body {
background-color: transparent;
min-width: 400px;
display: flex;
flex-direction: column;
align-items: center;
height: 50%;
font-weight: lighter;
}
input {
margin: 20px;
border: 3px solid rgb(127, 142, 11);
padding: 10px;
border-radius: 5px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 16px;
color: rgb(127, 142, 11);
width: 80%;
}
input::placeholder {
color: rgb(127, 142, 11);
}
button {
background-color: rgb(127, 142, 11);
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#url-list {
border: 3px solid rgb(127, 142, 11);
border-radius: 5px;
margin-top: 20px;
list-style: disc;
padding-left: 20px;
min-width: 80%;
padding: 30px;
}
a {
text-decoration: none;
font-size: 16px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a:link {
color: rgb(127, 142, 11);
}
a:visited {
color: rgba(131, 18, 159, 0.625);
}
a:hover {
color: red;
}
a:active {
color: green;
}
#clear-btn{
background-color: transparent;
border: 3px solid rgb(127, 142, 11);
color: rgb(127, 142, 11);
padding: 8px;
}