-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
88 lines (71 loc) · 1.39 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
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
/* Colour variables */
:root{
--bodybackground: #eeeeee;
--cardbackground: #E3E6ED;
--accentcolour1: #597E6F;
--accentcolour2: #009688;
}
body{
font-family: "Open Sans",sans-serif;
background-color: var( --bodybackground);
}
.btn-default{
padding:10px;
}
.jumbotron{
background-image: linear-gradient(120deg, var(--accentcolour1), var(--accentcolour2));
color: white;
padding: 20px;
}
.jumbotron a{
color: #FFF;
text-decoration: none;
}
/* ---- isotope ---- */
.grid {
border: 0px solid #333;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- .searchable-item ---- */
.searchable-item {
position: relative;
float: left;
margin: 5px;
padding: 20px;
color: #262524;
width: 250px;
}
.searchable-item a {
text-decoration: none;
}
.searchable-item > * {
margin: 0;
padding: 0;
}
input[type=text]{
padding: 12px 20px;
border-radius: 4px;
width: 100%;
border: 1px solid grey;
}
/* This is a cheeky hack to search for creating alternative search words / keywords that you don't want displayed, but still want searchable. See readme for more. */
.hiddentext{
display:none;
}
/* Spotlight cards */
.card{
padding: 10px;
background-color: var(--cardbackground);
text-align: center;
border: 3px solid #ecf0f1;
border-radius: 11px;
}
img {
width: 50%;
}