-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
108 lines (78 loc) · 1.37 KB
/
home.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
margin: 0;
padding: 0;
box-sizing:border-box;
font-family: sans-serif;
text-decoration: none;
list-style: none;
}
body {
font-family: monospace;
line-height: 1.7;
color: white;
background: darkcyan;
}
.container {
width: 76%;
margin: 0 auto;
}
nav {
background: rebeccapurple;
width: 100vw;
height: 5rem;
position: fixed;
top: 0;
}
.nav-container {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-menu {
display: flex;
align-items: center;
gap: 4rem;
}
.nav-menu a {
font-size: 0.9rem;
color: white;
}
.nav-menu a:hover {
color: black;
}
nav h1 {
color: white;
}
header {
display: grid;
place-items: center;
min-height: 100vh;
}
.header-container {
margin-top: 3rem;
position: relative;
}
/* to expand smallerimage header section */
.header-content {
text-align: center;
margin-top: 2rem;
width: 40rem;
margin-inline: auto;
}
.header-content h3 p {
margin-bottom: 0.7rem;
}
article a{
text-decoration: underline;
}
.links h2{
color: black;
}
.links a{
color: white;
}
.social-icon{
font-size: 30px;
justify-content: space-between;
}