-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.css
68 lines (59 loc) · 1.35 KB
/
index.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
/* Add your font via Google Font */
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
/* CSS Reset. You don't need to understand these.
* They're only here to make CSS consistent across all browsers. */
@import url("https://necolas.github.io/normalize.css/8.0.1/normalize.css");
/* Define your color scheme here, taken from Fullyhacks color scheme. */
:root {
--body_bg: #fffaf1;
--sky_100: #abe1ff;
--sky_300: #18aaff;
--blue_300: #385ddf;
--purple_300: #9ea8ff;
--purple_hover: #3b3561;
--purple_500: #4f38df;
--pink_700: #b438df;
--pink_400: #ff8f8f;
--pink_300: #df389c;
--pink_100: #ffabce;
--orange_300: #ffc985;
--orange_100: #ffedcc;
--purple_main: #340b67;
--purple_main_hover: #b49fcc;
}
html {
background-color: var(--body_bg);
font-family: "Rubik";
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.nav {
background-color: var(--purple_300);
padding: 2rem;
width: 100%;
display: flex;
list-style: none;
justify-content: space-around;
font-size: 1.5rem;
}
.navlink {
text-decoration: none;
color: black;
list-style: none;
}
.title {
color: var(--sky_300);
margin-top: 2rem;
font-size: 2rem;
}
.pictureCaption {
margin-top: 1rem;
}
.fullypic {
margin-top: 2rem;
object-fit: cover;
}