-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlinkbin.css
111 lines (96 loc) · 2.08 KB
/
linkbin.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
108
109
/* Set font, make stuff centered, set colors */
body {
font-family: Arial, sans-serif;
text-align: center;
margin: auto;
margin-top: 10%;
width: 60%;
color: black;
background-color: rgb(239, 239, 239);
}
/* Make logo big and have orange outline */
.logo {
user-select: none;
padding: 0;
margin: 0;
font-size: 70px;
font-weight: lighter;
text-shadow: 0 0 6px orangered;
}
.search-container {
margin: 20px;
}
.search-container button {
padding: 4px;
font-size: 24px;
}
/* Make search boxes look a bit better */
.search-container input {
border: 1px solid grey;
border-radius: 5px;
outline: 0;
background-color: #f5f5f5;
}
.search-container input:hover, .search-container input:focus {
border: 1.5px solid orange;
background-color: white;
}
/* Make the main search box big */
.big-input {
height: 20px;
font-size: 24px;
padding: 10px;
width: 100%;
}
/* Make the tag search box smaller and with a different font */
.small-input {
margin-top: 5px;
height: 10px;
font-size: 12px;
padding: 5px;
width: 64%;
font-family: 'Courier New', Courier, monospace;
}
/* Make each result box look nicer */
.result-box {
text-align: left;
border: 1px solid black;
border-radius: 5px;
background-color: #f5f5f5;
width: 100%;
margin: 8px auto 8px auto;
padding: 10px;
padding-top: 4px;
box-shadow: 2px 2px 5px black;
}
.result-box:hover {
background-color: white;
box-shadow: 1px 1px 8px orangered;
}
/* No margin on result title and have big font */
.result-title {
margin: 0;
font-size: 24px;
}
/* Make the link stick to the right side of the box */
.result-link {
position: relative;
float: right;
font-size: 24px;
}
/* Make the link have dotted underline and orange on hover */
.result-link a {
text-decoration-style: dotted;
}
.result-link a:hover {
color: orangered;
}
/* No margin on the description */
.result-description {
margin: 0;
}
/* Make tags grey and have no margin */
.result-tags {
margin: 0;
color: grey;
}