-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
92 lines (74 loc) · 1.06 KB
/
styles.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
body {
font-family: sans-serif;
}
h1 {
text-align: center;
}
form {
text-align: center;
margin: 1em 0;
}
input {
margin-right: 25px;
}
p.numResults {
text-align: center;
}
.results {
display: flex;
justify-content: space-evenly;
}
.results > div {
min-width: 30%;
}
.user,
.selected {
margin: 1em 0;
padding-right: 1em;
display: flex;
cursor: pointer;
}
.user:hover {
background-color: lightblue;
}
.selected {
background-color: yellow;
}
img {
width: 70px;
height: 70px;
margin-right: 1em;
}
ul {
list-style-type: none;
padding-inline-start: 0;
}
.results ul li {
margin: 1em 0;
}
nav {
text-align: center;
margin: 1em 0;
}
ul.pagination {
margin-top: 0;
margin-bottom: 0;
}
ul.pagination li {
display: inline;
margin: 0 1em;
}
ul.pagination li.page-item.active a.page-link {
color: blue;
background-color: yellow;
}
ul.pagination a.page-link {
padding: 1rem;
text-align: center;
color: blue;
font-size: 1rem;
text-decoration: none;
}
ul.pagination a.page-link:hover {
background-color: lightblue;
}