Skip to content
Merged
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
45 changes: 44 additions & 1 deletion agile-dev/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,50 @@

/* section 1 */
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
background-color: #9c9c9c;
}

img {
width: 200px;
}


.logo {
width: 50px;
height: 50px;
}



.buttonsec1 {
display: flex;
flex-direction: column;
align-items: center;
}

.buttonsec1 {
background-color: transparent;
border: none;
padding: 0;
cursor: pointer;
transition: opacity 0.3s;
}

buttonsec.buttonsec1 {
opacity: 0.8;
}


/* section 1 */
nav .imagelogo{
padding-left: 25px;
padding-top: 9px;
}
nav .listenav{
padding-right: 35px;
}
}

26 changes: 26 additions & 0 deletions agile-dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<link type="text/css" rel="stylesheet" href="css/custom.css"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>



<title>🤙 Yo! app</title>
</head>
<body>
Expand All @@ -33,6 +36,29 @@



<!--Début section 1-->
<div>
<section>
<div class="iphone section1">
<img src="img/iphone_features_light.png" alt="iphone section1">
</div>
<div class="buttonsec1">
<h1 style="font-size: medium;">Lorem ipsum</h1>
<button><img src="img/download_ios.png" alt="boutton"></button>
<button><img src="img/download_android.png" alt="boutton"></button>
</div>
</section>
</div>
<!--Fin section 1-->







<!-- finish code here -->

<!--Import materialize.js - JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="materialize.js"></script>
<!--Import your custom.js-->
Expand Down