réactivation du scroll dans main et help
This commit is contained in:
parent
3fde38a86d
commit
e9e91c7265
3 changed files with 75 additions and 3 deletions
73
help.css
Normal file
73
help.css
Normal file
|
@ -0,0 +1,73 @@
|
|||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: linear-gradient(135deg, #007BFF, #00C6FF);
|
||||
color: #007BFF;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 180vh;
|
||||
text-align: center;
|
||||
/*overflow:hidden;*/
|
||||
}
|
||||
|
||||
|
||||
.container {
|
||||
text-align: center;
|
||||
max-width: 650px;
|
||||
padding: 20px;
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
|
||||
header .logo {
|
||||
width: 100px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 2rem;
|
||||
color: #007BFF;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.welcome-image {
|
||||
width: 80%;
|
||||
max-width: 70px;
|
||||
margin: 20px auto;
|
||||
display: block;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
button {
|
||||
padding: 15px 30px;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
background-color: #007BFF;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
/*transition: background-color 0.3s, transform 0.2s;*/
|
||||
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #d3e017;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
|
||||
footer {
|
||||
margin-top: 20px;
|
||||
font-size: 14px;
|
||||
color: #888;
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
|
||||
<title>Démineur - Help</title>
|
||||
<link rel="stylesheet" href="main.css">
|
||||
<link rel="stylesheet" href="help.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
3
main.css
3
main.css
|
@ -1,4 +1,3 @@
|
|||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
|
@ -10,7 +9,7 @@ body {
|
|||
align-items: center;
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
overflow:hidden;
|
||||
/*overflow:hidden;*/
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue