parent
719dd3f136
commit
f784098151
@ -0,0 +1,160 @@
|
||||
#barre_nav{
|
||||
background: black;
|
||||
height: 56px;
|
||||
/*padding-top: 5px;*/
|
||||
vertical-align: center;
|
||||
}
|
||||
|
||||
#titre{
|
||||
font-family: "Lucida Console", Courier, monospace;
|
||||
text-shadow: white 0 -1px;
|
||||
}
|
||||
|
||||
#navbarSupportedContent{
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
.nav-item:hover{
|
||||
background-color: orange;
|
||||
border-radius: 10px;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
#image_ballon{
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#menu-ajout{
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
body{
|
||||
/*background-color: #353535;*/
|
||||
background-color: #900000;
|
||||
overflow-x: hidden;
|
||||
overflow-y:scroll;
|
||||
}
|
||||
|
||||
.collapse.width,
|
||||
.collapsing.width {
|
||||
max-width: 0;
|
||||
min-width: 0;
|
||||
width: 0;
|
||||
transition: all .2s ease;
|
||||
}
|
||||
#collapseExample{
|
||||
width: 400px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.collapse .flex-column {
|
||||
overflow: auto;
|
||||
flex-wrap: nowrap; /* Optional, if you don't want the links to form columns if they overflow */
|
||||
}
|
||||
|
||||
.collapse .flex-column li {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#derouler_action{
|
||||
margin-bottom: 90%;
|
||||
}
|
||||
|
||||
#colonne_gauche{
|
||||
width: fill;
|
||||
height: fill;
|
||||
background-color: #353535;
|
||||
}
|
||||
|
||||
#colonne_droite{
|
||||
width: auto;
|
||||
height: auto;
|
||||
background-color: #993535;
|
||||
}
|
||||
|
||||
|
||||
.feather {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
/*
|
||||
* Sidebar
|
||||
*/
|
||||
|
||||
.sidebar {
|
||||
margin-top: 56px;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 100; /* Behind the navbar */
|
||||
padding: 48px 0 0; /* Height of navbar */
|
||||
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
||||
}
|
||||
|
||||
@media (max-width: 767.98px) {
|
||||
.sidebar {
|
||||
top: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-sticky {
|
||||
position: relative;
|
||||
top: 0;
|
||||
height: calc(100vh - 48px);
|
||||
padding-top: .5rem;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
|
||||
}
|
||||
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.sidebar-sticky {
|
||||
position: -webkit-sticky;
|
||||
position: sticky;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar .nav-link {
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.sidebar .nav-link .feather {
|
||||
margin-right: 4px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.sidebar .nav-link.active {
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
.sidebar .nav-link:hover .feather,
|
||||
.sidebar .nav-link.active .feather {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.sidebar-heading {
|
||||
font-size: .75rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
#list-home-list{
|
||||
height: 50px;
|
||||
width: 49%;
|
||||
}
|
||||
#ul{
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
#list-home-list{
|
||||
padding-right:10px;
|
||||
width: 99%
|
||||
}
|
||||
#bouton{
|
||||
margin-left: 15px;
|
||||
}
|
||||
#arbre{
|
||||
height: 150px;
|
||||
width: 80%;
|
||||
}
|
@ -0,0 +1,169 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="basket.css">
|
||||
<title>Basket</title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-light" id="barre_nav">
|
||||
<div id="titre">
|
||||
<img id="image_ballon" src="image_ballon.jpg" width="30" height="30" alt="">
|
||||
<a class="navbar-brand text-white" href="#">BASKET</a>
|
||||
</div>
|
||||
<button class="navbar-toggler bg-light" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link text-white" href="#">Connexion <span class="sr-only">(current)</span></a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" href="#">Galerie</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle text-white" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Nouvelle page
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#">HAUT TERRAIN</a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item " href="#">BAS TERRAIN</a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item " href="#">FULL TERRAIN</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle text-white" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Partager
|
||||
</a>
|
||||
<div class="dropdown-menu text-white" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item" href="#">PDF</a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item" href="#">JPG</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white" href="#">Sauvegarder</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<nav id="sidebarMenu" class="col-md-3 col-lg-2 d-md-block bg-light sidebar collapse">
|
||||
<div class="row list-group list-group">
|
||||
<div >
|
||||
<div class="list-group list-group-horizontal" id="bouton" role="tablist">
|
||||
<a class="list-group-item list-group-item-action active" id="list-home-list" data-toggle="list" href="#list-home" role="tab" aria-controls="home">CREATION
|
||||
</a>
|
||||
<a class="list-group-item list-group-item-action" data-toggle="list" id="list-tab" href="#list-profile" role="tab" aria-controls="profile">VUE ARBRE
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="tab-content" id="nav-tabContent">
|
||||
<div class="tab-pane fade show active" id="list-home" role="tabpanel" aria-labelledby="list-home-list">
|
||||
<div class="sidebar-sticky pt-3">
|
||||
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
||||
<span>AJOUTER JOUEUR</span>
|
||||
<a class="d-flex align-items-center text-muted" href="#" aria-label="Add a new report">
|
||||
<span data-feather="plus-circle"></span>
|
||||
</a>
|
||||
</h6>
|
||||
<ul class="nav flex-column" id="ul">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file"></span>
|
||||
ATTAQUANT
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="shopping-cart"></span>
|
||||
DEFENSEUR
|
||||
</a>
|
||||
</ul>
|
||||
|
||||
<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
|
||||
<span>ACTIONS</span>
|
||||
<a class="d-flex align-items-center text-muted" href="#" aria-label="Add a new report">
|
||||
<span data-feather="plus-circle"></span>
|
||||
</a>
|
||||
</h6>
|
||||
<ul class="nav flex-column mb-2" id="ul">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file-text"></span>
|
||||
PASSE
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file-text"></span>
|
||||
DEPLACER
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file-text"></span>
|
||||
DRIBLER
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file-text"></span>
|
||||
ECRAN
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file-text"></span>
|
||||
TIRER
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="list-profile" role="tabpanel" aria-labelledby="list-profile-list">
|
||||
<div class="sidebar-sticky pt-3">
|
||||
<ul class="nav flex-column" id="ul">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="#">
|
||||
<span data-feather="home"></span>
|
||||
<span class="sr-only">(current)</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">
|
||||
<span data-feather="file"></span>
|
||||
<img id="arbre" src="arbre.PNG" width="30" height="30" alt="">
|
||||
</a>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<button type="button" class="btn btn-warning fixed-bottom font-weight-bold" >+</button>
|
||||
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 50 KiB |
Loading…
Reference in new issue