Making css work.

This commit is contained in:
Tristan Roux
2019-01-12 23:22:54 +01:00
parent fffea87f45
commit a94d6e1fd7
5 changed files with 16 additions and 2 deletions

2
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,2 @@
{
}

View File

@@ -1,4 +1,4 @@
<nav class="navbar sticky-top navbar-expand-s navbar-dark bg-primary" >
<nav class="navbar sticky-top navbar-expand-md navbar-dark bg-primary" >
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".nav-content">
<span class="navbar-toggler-icon"></span>
</button>

View File

@@ -8,7 +8,7 @@
<link rel="shortcut icon" type="image/png" href="drawables\icon.png"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link href=style.css" rel="stylesheet" type="text/css">
<link href="style.scss" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>

View File

12
style.scss Normal file
View File

@@ -0,0 +1,12 @@
/* Navigation bar */
.nav-content
{
display: none;
}
@include media-breakpoint-up(sm)
{
.nav-content
{
display: flex;
}
}