Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 132 additions & 0 deletions css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page</title>
</head>
<body>
HOME PAGE
</body>
</html>
1 change: 1 addition & 0 deletions logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
121 changes: 121 additions & 0 deletions scss/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@


/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}


// section
// header

*{
box-sizing: border-box;
}
li,a,.btn{
text-transform: uppercase;
font-size: 13px;
text-decoration: none;
color: rgba(0, 0, 0, 0.56);
font-weight: bolder;
font-family: 'Roboto', sans-serif;
}
.contianer{
margin: 0 auto;
max-width: 1140px;
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 25px;

.logo {
width: 100px;
cursor: pointer;
margin-right: 90px;
}

.nav {

margin-right: auto;

ul{
display: flex;
li{
list-style-type: none;
padding: 20px;


a{
&.active{
border-bottom: 3px solid;
}
}
}
}
}
.icons {
font-size: 15px;
margin-right: auto;
color: rgba(0, 0, 0, 0.56);

i{
display: inline-block;
width: 60px;
}
}
.btn{
background:#025467;
color:#f3f3f3;
padding: 10px 15px;
margin-right: auto;
border: none;
border-radius: 3px;
&:hover{
background: rgb(30, 84, 131);;
}
}
}