-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
135 lines (113 loc) · 2.09 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body {
background-color: #C8E6C9;
margin: 0;
text-align: center;
}
.page {
background-color: white;
width: 60%;
padding: 20px 0px 20px 0px;
margin: 20px auto;
box-shadow: 10px 10px 5px #888888;
}
#searchForm {
margin: 0px 0px 50px 0px
}
.jumbotron {
background-color: #E0E0E0;
margin: 20px auto;
padding-top: 20px;
padding-bottom: 20px;
box-shadow: 5px 5px 2px #888888;
color: black;
border: 0px solid;
border-radius: 100px;
}
.box-title > a:link {
text-decoration: none;
color: black;
font-size: 20px;
font-family: 'Fjalla One', sans-serif;
}
.box-title > a:visited {
text-decoration: none;
font-weight: bold;
background-color: #ddd;
color: black;
}
.box-title > a:hover {
text-decoration: none;
font-weight: bold;
color: black;
}
.box-title {
text-align: left;
padding-bottom: 10px;
line-height: 25px;
}
.box-description {
text-align: justify;
text-justify: inter-word;
font-family: 'Crimson Text', serif;
font-size: 18px;
}
.container {
width: 80%;
}
.main-title {
font-size: 70px;
margin: 50px 0px 50px 0px;
text-align: center;
color: #455A64;
font-family: 'Zilla Slab', serif;
line-height: 60px;
}
input, button{
font-size: 20px;
}
#searchQuery {
border-radius: 3px;
border-style: solid;
border-width: thin;
border-color: #080808;
}
#searchQuery:focus {
outline: none;
box-shadow: 0 0 7px darkgreen;
}
#submit {
background-color: darkgreen;
border-color: darkgreen;
}
#submit:hover {
background-color: green;
border-color: green;
}
a {
font-size: 30px;
margin: 10px 0px 10px 0px;
color: dodgerblue;
font-family: 'Zilla Slab', serif;
}
a:hover {
color: deepskyblue;
}
#return{
margin: 10px 0px 20px 0px;
text-align: right;
}
.display-flex {
display: flex;
}
.justify-content-center {
justify-content: center;
}
.align-items-stretch {
align-items: stretch;
}
.padding-1 {
padding: 1rem;
}
.margin-right-half {
margin-right: 0.5rem;
}