-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (56 loc) · 1.01 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
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
body {
font-family: 'Raleway', sans-serif;
}
.container {
margin-top: 5em;
display: flex;
align-items: center;
justify-content: center;
}
#search-form {
display: flex;
flex-direction: column;
}
.search-box {
padding: 1em;
width: 30em;
outline: none;
font-family: 'Raleway', sans-serif;
border-radius: 1em;
}
.search-btn {
background-color: #32cd32;
font-family: 'Raleway', sans-serif;
outline: none;
border: none;
padding: 1em;
border-radius: 1em;
cursor: pointer;
}
#select-theme {
margin-top: 1em;
margin-bottom: 1em;
font-family: 'Raleway', sans-serif;
outline: none;
padding: .5em;
}
#profilestats {
margin: 5em;
}
.image {
display: flex;
align-items: center;
justify-content: center;
}
.user-avatar {
border-radius: 50%;
width: 5em;
height: 5em;
}
footer {
text-align: center;
}
footer a {
color: black;
}