Skip to content

Commit ade40b9

Browse files
committed
final first assignment
1 parent a0710e9 commit ade40b9

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

css/style.css

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,25 @@ body {
4747
flex-direction: row;
4848
font-size: 0.75rem;
4949
padding: 0rem 1rem 0rem 0rem;
50+
color: gray;
5051

5152
}
5253

54+
.navigation-item-karma {
55+
color: black !important;
56+
}
57+
5358
.navigation-link {
5459
color: var(--grey-dark);
5560
font-weight: 600;
56-
text-transform: uppercase;
5761
text-decoration: none;
5862
padding: 0.5rem 0;
5963
}
6064

65+
.navigation-link:hover {
66+
color: orange;
67+
}
68+
6169
/* body with background picture*/
6270

6371
.main {
@@ -69,8 +77,22 @@ body {
6977
text-align: center;
7078
}
7179

80+
.button {
81+
background-color: orangered;
82+
color: white;
83+
border-radius: 1px;
84+
padding: 5px 15px;
85+
font-size: 11px;
86+
border: none;
87+
}
88+
7289
.karma {
7390
padding-top: 150px;
91+
font-size: 1.2rem;
92+
}
93+
94+
.karma-intro {
95+
font-size: 2rem;
7496
}
7597

7698
.second-heading {
@@ -88,6 +110,8 @@ body {
88110
.join-us{
89111
border-top: 2px solid lightgray;
90112
text-align: center;
113+
margin-top: 30px;
114+
padding-top: 20px;
91115
}
92116

93117
.icon-footer {
@@ -100,7 +124,7 @@ body {
100124
padding: 3px;
101125
border-radius: 50%;
102126
border: solid lightgray;
103-
margin: 0px 2px;
127+
margin: 0px 5px;
104128
}
105129

106130
.copyright {

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<nav class="navigation">
2020
<ul class="navigation-list">
21-
<li class="navigation-item">
21+
<li class="navigation-item navigation-item-karma">
2222
<a class="navigation-link" href="#">Meet Karma</a>
2323
</li>
2424
<li class="navigation-item">
@@ -42,7 +42,7 @@
4242

4343
<main class="main">
4444
<div class="karma">
45-
<h1>Introducing Karma</h1>
45+
<p class="karma-intro">Introducing Karma</p>
4646
<p class="bring-wifi">Bring WiFi with you, everywhere you go.</p>
4747
<button class="button" href="#">Learn More</button>
4848
</div>

0 commit comments

Comments
 (0)