Harmonisation et ajout logo
這個提交存在於:
父節點
d71260ba59
當前提交
dd6a26c34b
共有 5 個檔案被更改,包括 70 行新增 和 21 行删除
|
@ -3,6 +3,8 @@ body {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
color:white;
|
||||||
|
font-family: 'Special Elite', cursive;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
height: 95vh;
|
height: 95vh;
|
||||||
}
|
}
|
||||||
|
@ -55,20 +57,21 @@ body {
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
outline: none;
|
outline: none;
|
||||||
border: 3px solid white;
|
border:0.2vw solid #b9b9b9;
|
||||||
border-radius: 50px;
|
border-radius: 4vw;
|
||||||
height: 8vh;
|
|
||||||
min-width: 15vw;
|
min-width: 15vw;
|
||||||
padding: 0px 10px 0px 10px;
|
width :20vw;
|
||||||
|
padding: 1vw 1.2vw 1vw 1.2vw;
|
||||||
color: black;
|
color: black;
|
||||||
font-family: 'Special Elite', cursive;
|
font-family: 'Special Elite', cursive;
|
||||||
font-size: 1.2vw;
|
font-size: 1.5vw;
|
||||||
background-image: linear-gradient(to top, black -50%, #BF0909 80%);
|
background-image: linear-gradient(to top, black -50%, #BF0909 80%);
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:hover {
|
.button:hover {
|
||||||
box-shadow: 0 0 50px #B0C4DE;
|
border: 0.2vw solid white;
|
||||||
|
box-shadow: 0 0 3vw #B0C4DE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:active {
|
.button:active {
|
||||||
|
@ -94,8 +97,16 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer{
|
||||||
color: green;
|
flex:0.5;
|
||||||
display: flex;
|
display:flex;
|
||||||
flex : 1;
|
flex-direction: column;
|
||||||
}
|
justify-content:flex-end;
|
||||||
|
align-items: center;
|
||||||
|
font-size:1vw;
|
||||||
|
margin-top:2vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#names{
|
||||||
|
margin : 0;
|
||||||
|
}
|
||||||
|
|
50
CSS/menu.css
50
CSS/menu.css
|
@ -4,13 +4,12 @@ body{
|
||||||
color:white;
|
color:white;
|
||||||
display:flex;
|
display:flex;
|
||||||
flex-direction:column;
|
flex-direction:column;
|
||||||
justify-content:center;
|
|
||||||
align-items: center;
|
|
||||||
font-family:'Special Elite',cursive;
|
font-family:'Special Elite',cursive;
|
||||||
}
|
}
|
||||||
|
|
||||||
header{
|
header{
|
||||||
flex:1;
|
flex:1;
|
||||||
|
padding-top:2vw;
|
||||||
display:flex;
|
display:flex;
|
||||||
justify-content:center;
|
justify-content:center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -18,7 +17,7 @@ header{
|
||||||
}
|
}
|
||||||
|
|
||||||
#headerTxt{
|
#headerTxt{
|
||||||
|
margin:0;
|
||||||
font-size:4.5vw;
|
font-size:4.5vw;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color:#a30909;
|
color:#a30909;
|
||||||
|
@ -47,6 +46,13 @@ main{
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main section {
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content:center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
main section article {
|
main section article {
|
||||||
display:flex;
|
display:flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -54,6 +60,31 @@ main{
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#logoBlock{
|
||||||
|
margin-bottom:5vh;
|
||||||
|
height:20vh;
|
||||||
|
width:50vw;
|
||||||
|
display:block;
|
||||||
|
opacity:0;
|
||||||
|
animation:fade-text 1s forwards;
|
||||||
|
animation-delay:6s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo{
|
||||||
|
width:3vw;
|
||||||
|
height:auto;
|
||||||
|
animation-name: search;
|
||||||
|
animation-duration:5s;
|
||||||
|
animation-iteration-count:infinite;
|
||||||
|
position:relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes search{
|
||||||
|
0% {transform:translate3D(10vw,5vh,0)}
|
||||||
|
50% {transform:translate3D(40vw,15vh,0)}
|
||||||
|
100% {transform:translate3D(10vw,5vh,0)}
|
||||||
|
}
|
||||||
|
|
||||||
main section article span{
|
main section article span{
|
||||||
width:16vw;
|
width:16vw;
|
||||||
display:flex;
|
display:flex;
|
||||||
|
@ -85,24 +116,25 @@ main{
|
||||||
|
|
||||||
#introTxt{
|
#introTxt{
|
||||||
opacity:0;
|
opacity:0;
|
||||||
font-size:2vw;
|
font-size:1.8vw;
|
||||||
animation:fade-text 1s forwards;
|
animation:fade-text 1s forwards;
|
||||||
animation-delay:3.5s;
|
animation-delay:3.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pseudoTxt{
|
#pseudoTxt{
|
||||||
opacity:0;
|
opacity:0;
|
||||||
font-size:2vw;
|
font-size:1.8vw;
|
||||||
animation:fade-text 1s forwards;
|
animation:fade-text 1s forwards;
|
||||||
animation-delay:5s;
|
animation-delay:5s;
|
||||||
|
margin-bottom:1vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pseudoInput{
|
#pseudoInput{
|
||||||
opacity:0;
|
opacity:0;
|
||||||
font-family:'Special Elite',cursive;
|
font-family:'Special Elite',cursive;
|
||||||
font-size:1.8vw;
|
font-size:1.5vw;
|
||||||
border-radius:1vw;
|
border-radius:1vw;
|
||||||
padding:0.3vw 1vw 0vw 0.5vw;
|
padding:0.5vw 0.7vw 0.3vw 0.7vw;
|
||||||
animation:fade-text 1s forwards;
|
animation:fade-text 1s forwards;
|
||||||
animation-delay:5s;
|
animation-delay:5s;
|
||||||
|
|
||||||
|
@ -111,9 +143,9 @@ main{
|
||||||
#pseudoInput:focus{
|
#pseudoInput:focus{
|
||||||
outline:none;
|
outline:none;
|
||||||
font-family:'Special Elite',cursive;
|
font-family:'Special Elite',cursive;
|
||||||
font-size:1.8vw;
|
font-size:1.5vw;
|
||||||
border-radius:1vw;
|
border-radius:1vw;
|
||||||
padding:0.3vw 1vw 0vw 0.5vw;
|
padding:0.5vw 0.7vw 0.3vw 0.7vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
#buttonBlock{
|
#buttonBlock{
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>INSAïde</title>
|
<title>INSAïde</title>
|
||||||
|
<link rel="shortcut icon" href="../Images/Logo.png" type="image/png">
|
||||||
<link rel="stylesheet" href="../CSS/etrange_decouverte.css">
|
<link rel="stylesheet" href="../CSS/etrange_decouverte.css">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
|
||||||
|
@ -29,7 +30,8 @@
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
|
<p id="names">Copyright © 2020 Florian EHR - Pierre FAVARY - Baptiste MARTY</p>
|
||||||
|
<p id="rights">Tous droits réservés </p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -4,6 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>INSAïde</title>
|
<title>INSAïde</title>
|
||||||
|
<link rel="shortcut icon" href="../Images/Logo.png" type="image/png">
|
||||||
<link rel="stylesheet" href="../CSS/menu.css">
|
<link rel="stylesheet" href="../CSS/menu.css">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
|
||||||
|
@ -15,6 +16,9 @@
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<section>
|
<section>
|
||||||
|
<article id="logoBlock">
|
||||||
|
<img id="logo" src="../Images/Logo.png" alt="Logo"/>
|
||||||
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<span>
|
<span>
|
||||||
<span id="B">B</span>
|
<span id="B">B</span>
|
||||||
|
|
二進制
Images/Logo.png
一般檔案
二進制
Images/Logo.png
一般檔案
未顯示二進位檔案。
之後 寬度: | 高度: | 大小: 26 KiB |
載入中…
新增問題並參考