generated from shkeating/html-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (60 loc) · 1.03 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
/* your styles will go here!! */
/* global */
body {
margin: 0;
background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, rgba(5, 176, 231, 0.42) 100%);
}
/* navigation */
header {
display: flex;
justify-content: space-between;
align-items: center;
margin: 20px;
}
nav {
padding: 10px 0;
}
nav a{
color: #0075a7;
text-decoration: none;
font-size: 20px;
font-family: sans-serif;
padding: 10px 30px;
}
nav a:hover, nav a:focus {
background: white;
border-color: red;
}
#logo img {
width: 95px;
margin: 20px;
}
/* homepage */
.home main {
margin: 50px;
display: flex;
flex-direction: column;
align-items: center;
}
.home img {
max-width: 600px;
width: 100%;
}
h1 {
color: #16B0F2;
font-size: 80px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
h2 {
color: red;
}
.💙 {
color: #D316F2;
font-family: Rubik;
font-size: 33px;
font-style: normal;
font-weight: 400;
line-height: normal;
}