-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d43385e
commit d7e1dba
Showing
7 changed files
with
120 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.nav{ | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
background-color: #f9f9fa; | ||
padding: 20px 50px; | ||
box-sizing: border-box; | ||
border-top: 1px solid rgba(121,121,123,0.3); | ||
} | ||
.nav__list{ | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 20px 40px; | ||
} | ||
.nav__link{ | ||
color: #2e363e; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
.status-bar{ | ||
display: flex; | ||
justify-content: center; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,7 @@ table { | |
input:focus{ | ||
outline: none; | ||
} | ||
a { | ||
color: inherit; | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#login-form { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0px 30px; | ||
} | ||
|
||
#login-form input { | ||
border: none; | ||
padding: 15px 0px; | ||
font-size: 18px; | ||
margin-bottom: 25px; | ||
} | ||
|
||
#login-form input:not([type="submit"]) { | ||
border-bottom: 1px solid rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
#login-form input::placeholder { | ||
color: rgba(0, 0, 0, 0.4); | ||
} | ||
|
||
#login-form input:focus { | ||
border-color: var(--yellow); | ||
} | ||
|
||
#login-form input[type="submit"] { | ||
background-color: var(--yellow); | ||
cursor: pointer; | ||
padding: 20px 0px; | ||
border-radius: 5px; | ||
} | ||
#login-form a{ | ||
text-align: center; | ||
text-decoration: none; | ||
color: inherit; | ||
font-size: 13px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="css/stlyles.css"> | ||
<title>friends - KoKoa Clone</title> | ||
</head> | ||
|
||
<body> | ||
<div class="status-bar"> | ||
<div class="status-bar__column"> | ||
<span>No Service</span> | ||
<i class="fa-solid fa-wifi"></i> | ||
</div> | ||
<div class="status-bar__column"> | ||
<span>18:43</span> | ||
</div> | ||
<div class="status-bar__column"> | ||
<span>71%</span> | ||
<i class="fa-solid fa-battery-three-quarters"></i> | ||
<i class="fa-solid fa-bolt"></i> | ||
</div> | ||
</div> | ||
<nav class="nav"> | ||
<ul class="nav__list"> | ||
<li class="nav__btn"> | ||
<a class="nav__link" href="#"> | ||
<i class="fa-solid fa-user fa-2x"></i> | ||
</a> | ||
</li> | ||
<li class="nav__btn"> | ||
<a class="nav__link" href="#"> | ||
<i class="fa-regular fa-comment fa-2x"></i> | ||
</a> | ||
</li> | ||
<li class="nav__btn"> | ||
<a class="nav__link" href="#"> | ||
<i class="fa-solid fa-magnifying-glass fa-2x"></i> | ||
</a> | ||
</li> | ||
<li class="nav__btn"> | ||
<a class="nav__link" href="#"> | ||
<i class="fa-solid fa-ellipsis fa-2x"></i> | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<script src="https://kit.fontawesome.com/59ff05d9f3.js" crossorigin="anonymous"></script> | ||
</body> | ||
|
||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters