This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (91 loc) · 1.95 KB
/
style.css
File metadata and controls
111 lines (91 loc) · 1.95 KB
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
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
/* =================
WRITE YOUR CSS HERE.
Check the ⌄ for help with formatting and validating your code.
You must write some CSS to complete this challenge.
===================
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Unbounded:wght@200&display=swap');
.aside {
width: 40%;
padding-left: 30px;
margin-left: 30px;
margin-bottom: 1rem;
float:right;
box-shadow: inset 5px 0 5px -5px #29627e;
font-style: italic;
color: #0c2938;
background-color: #92AFD7;
border: 2px solid white;
}
.title {
text-align: center;
font-family: 'Montserrat', sans-serif;
font-family: 'Unbounded', cursive;;
}
.image {
display: block;
border: 2px solid white;
margin: 0 auto;
margin-bottom: 1rem;
}
.navbar {
background-color: #92AFD7;
text-align:center;
padding: 1rem;
}
nav a {
color: black;
margin-left: 20px;
font-size: 1.4em;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
.iframe {
display:block;
margin: 0 auto;
border: 2px solid white;
}
body {
background-color: #C5D1EB;
}
.footer {
background-color: #5A7684;
color: white;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
text-align: center;
}
p {
font-family: 'Raleway', sans-serif;
margin-left: 60px;
margin-right: 60px;
color: black;
font-size: large;
line-height: 2em;
}
h1 {
font-size: 3em;
}
h2 {
text-align: center;
font-size: 2em;
font-family: 'Montserrat', sans-serif;
font-family: 'Unbounded', cursive;
}
h3 {
font-family: 'Montserrat', sans-serif;
font-family: 'Unbounded', cursive;
}
.pfooter {
color: white;
}