Spaces:
Running
Running
Commit
·
493116b
1
Parent(s):
48b100e
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,53 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
}
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
font-size: 15px;
|
14 |
-
margin-bottom: 10px;
|
15 |
-
margin-top: 5px;
|
16 |
}
|
17 |
|
18 |
-
.
|
19 |
-
|
20 |
-
margin: 0 auto;
|
21 |
-
padding: 16px;
|
22 |
-
border: 1px solid lightgray;
|
23 |
-
border-radius: 16px;
|
24 |
}
|
25 |
|
26 |
-
.
|
27 |
-
|
|
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");
|
2 |
+
|
3 |
+
.main-container {
|
4 |
+
font-family: "Roboto";
|
5 |
+
}
|
6 |
+
|
7 |
+
.wiki-search-header {
|
8 |
+
border-style: solid;
|
9 |
+
border-width: 1px;
|
10 |
+
border-color: #d5cdcd;
|
11 |
+
padding-top: 30px;
|
12 |
+
padding-right: 20px;
|
13 |
+
padding-bottom: 30px;
|
14 |
+
padding-left: 20px;
|
15 |
+
margin-bottom: 40px;
|
16 |
+
}
|
17 |
+
|
18 |
+
.wiki-logo {
|
19 |
+
width: 150px;
|
20 |
+
margin-bottom: 30px;
|
21 |
+
}
|
22 |
+
|
23 |
+
.search-input {
|
24 |
+
font-size: 18px;
|
25 |
+
border-style: solid;
|
26 |
+
border-width: 1px;
|
27 |
+
border-color: #d5cdcd;
|
28 |
+
border-radius: 3px;
|
29 |
+
padding: 10px;
|
30 |
}
|
31 |
|
32 |
+
.search-results {
|
33 |
+
width: 100%;
|
34 |
+
padding-left: 20px;
|
35 |
}
|
36 |
|
37 |
+
.result-item {
|
38 |
+
margin-bottom: 20px;
|
|
|
|
|
|
|
39 |
}
|
40 |
|
41 |
+
.result-title {
|
42 |
+
font-size: 22px;
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
|
45 |
+
.link-description {
|
46 |
+
color: #444444;
|
47 |
+
font-size: 15px;
|
48 |
}
|
49 |
+
|
50 |
+
.result-url {
|
51 |
+
color: #006621;
|
52 |
+
text-decoration: none;
|
53 |
+
}
|