Aucun résumé des modifications |
(Ajout du CSS pour l'écran accueil) |
||
| Ligne 98 : | Ligne 98 : | ||
color: var(--color-base--emphasized); | color: var(--color-base--emphasized); | ||
} | } | ||
/* Home page style below: */ | |||
.home-header{ | |||
width: 100%; | |||
height: 100vh; | |||
background-size: cover; | |||
background-image: url("./Pont\ wiki.jpg"); | |||
display: flex; | |||
flex-direction: column; | |||
color: aliceblue; | |||
align-content: center; | |||
justify-content: center; | |||
align-items: center; | |||
} | |||
.home-header .tinfo{ | |||
margin: 1px; | |||
color: rgb(236, 238, 238); | |||
} | |||
.hheader-form{ | |||
font-size: 0; | |||
} | |||
.hheader-form .input{ | |||
border: 0; | |||
padding-left: 10px; | |||
border-radius: 10px 0 0 10px; | |||
background-color: #212630; | |||
color: aliceblue; | |||
height: 2.5rem; | |||
width: 400px; | |||
box-sizing: border-box; | |||
-moz-box-sizing: border-box; | |||
-webkit-box-sizing: border-box; | |||
} | |||
.hheader-form .input:focus{ | |||
outline: none; | |||
} | |||
.hheader-form .btn{ | |||
border: 0; | |||
background-color: #212630; | |||
color: aliceblue; | |||
height: 2.5rem; | |||
border-radius: 0 10px 10px 0; | |||
box-sizing: border-box; | |||
-moz-box-sizing: border-box; | |||
-webkit-box-sizing: border-box; | |||
transition: all 300ms ; | |||
position: absolute; | |||
cursor: pointer; | |||
} | |||
.home-header h1{ | |||
font-size: 3rem; | |||
} | |||
.home-header .enplus{ | |||
color: rgb(197, 200, 202); | |||
position: absolute; | |||
bottom: 20px; | |||
text-decoration: none; | |||
display: flex; | |||
flex-direction: row; | |||
align-items: center; | |||
} | |||
.home-header .enplus p{ | |||
margin-left: 10px; | |||
clear: both; | |||
display: inline-block; | |||
overflow: hidden; | |||
white-space: nowrap; | |||
width: 0px; | |||
transition: all 500ms; | |||
} | |||
.home-header .enplus:hover > p{ | |||
width: 92px; | |||
} | |||
#plusdinfo { | |||
padding-left: 20%; | |||
padding-right: 20%; | |||
padding-top: 200px; | |||
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; | |||
} | |||
#plusdinfo h1{ | |||
margin-top: 80px; | |||
background: rgb(241,82,52); | |||
background: -moz-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
background: -webkit-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
background: linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f15234",endColorstr="#edaa7d",GradientType=1); | |||
-webkit-background-clip: text; | |||
-webkit-text-fill-color: transparent; | |||
-moz-background-clip: text; | |||
-moz-text-fill-color: transparent; | |||
} | |||
.cardlist { | |||
display: flex; | |||
align-content: center; | |||
justify-content: center; | |||
align-items: center; | |||
} | |||
.cardlist .li{ | |||
margin-top: 200px; | |||
display: grid; | |||
max-width: 1350px; | |||
grid-template-columns: repeat(3, 1fr) minmax(auto, 300px); | |||
grid-template-rows: repeat(3, 1fr); | |||
grid-column-gap: 40px; | |||
grid-row-gap: 40px; | |||
} | |||
.card { | |||
border-radius: 16px; | |||
border: 1px solid rgba(241, 82, 52, 0.47); | |||
padding: 15px; | |||
background-color: rgb(243, 243, 243); | |||
text-decoration: none; | |||
color: #212630; | |||
transition: all 500ms; | |||
max-width: 300px; | |||
} | |||
.card:hover{ | |||
-webkit-box-shadow:0px 0px 60px 20px rgba(241,83,52,0.7); | |||
-moz-box-shadow: 0px 0px 60px 20px rgba(241,83,52,0.7); | |||
box-shadow: 0px 0px 60px 20px rgba(241,83,52,0.7); | |||
transform: scale(1.03); | |||
background-color: rgb(255, 255, 255); | |||
cursor: pointer; | |||
} | |||
.card .header { | |||
display: flex; | |||
justify-content: space-between; | |||
flex-direction: row; | |||
align-items: center; | |||
} | |||
.card .header p{ | |||
text-align: end; | |||
margin: 0; | |||
font-size: 1.4rem; | |||
background: rgb(241,82,52); | |||
background: -moz-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
background: -webkit-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
background: linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%); | |||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f15234",endColorstr="#edaa7d",GradientType=1); | |||
-webkit-background-clip: text; | |||
-webkit-text-fill-color: transparent; | |||
-moz-background-clip: text; | |||
-moz-text-fill-color: transparent; | |||
} | |||
.card .header svg{ | |||
min-width: 30px; | |||
min-height: 30px; | |||
} | |||
.degrad{ | |||
background: -moz-linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%); | |||
background: -webkit-linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%); | |||
background: linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%); | |||
margin-top: 50px; | |||
padding-top: 250px; | |||
} | |||
.favs { | |||
background: rgb(20,24,31); | |||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#14181f",endColorstr="#ffffff",GradientType=1); | |||
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; | |||
color: aliceblue; | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
flex-direction: column; | |||
} | |||
.favs h1{ | |||
z-index: 100; | |||
font-family: 'Linux Libertine O', sans-serif; | |||
font-size: 3rem; | |||
margin-top: 80px; | |||
} | |||
.favs h1 svg { | |||
z-index: -100; | |||
left: -40px; | |||
width: 70px; | |||
height: 70px; | |||
position: relative; | |||
} | |||
.favs ul { | |||
list-style-type: none; | |||
padding-right: 20px; | |||
padding-left: 20px; | |||
} | |||
.favs li { | |||
border-radius: 16px; | |||
border: 1px solid rgba(241, 82, 52, 0.47); | |||
padding: 15px; | |||
background-color: #212630; | |||
text-decoration: none; | |||
transition: all 500ms; | |||
margin-bottom: 20px; | |||
display: flex; | |||
justify-content: space-between; | |||
} | |||
.favs li a{ | |||
text-decoration: none; | |||
color: aliceblue; | |||
} | |||
.marklist { | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
align-self: center; | |||
flex-direction: column; | |||
padding-top: 50px; | |||
background: rgb(20,24,31); | |||
} | |||
.marklist div{ | |||
width: 100%; | |||
display: flex; | |||
justify-content: space-around; | |||
align-items: center; | |||
align-self: center; | |||
flex-direction: row; | |||
background: rgb(20,24,31); | |||
} | |||
.marklist img{ | |||
filter: grayscale(0.9); | |||
transition: all 500ms; | |||
border-radius: 5px; | |||
} | |||
.marklist img:hover{ | |||
filter: grayscale(0); | |||
transform: scale(1.2); | |||
} | |||
.marklist h1{ | |||
z-index: 100; | |||
font-family: 'Linux Libertine O', sans-serif; | |||
font-size: 3rem; | |||
margin-top: 80px; | |||
color: aliceblue; | |||
} | |||
@media only screen and (max-width: 850px){ | |||
.cardlist .li{ | |||
grid-template-columns: repeat(2, 1fr) minmax(auto, 300px); | |||
grid-template-rows: repeat(4, 1fr); | |||
} | |||
h1{ | |||
font-size: 2rem!important; | |||
} | |||
} | |||
@media only screen and (max-width: 650px){ | |||
.cardlist .li{ | |||
grid-template-columns: repeat(1, 1fr) minmax(auto, 300px); | |||
grid-template-rows: repeat(5, 1fr); | |||
} | |||
.marklist img{ | |||
max-height: 40px!important; | |||
} | |||
} | |||
@media only screen and (max-width: 500px){ | |||
.cardlist .li{ | |||
display: flex; | |||
justify-content: space-around; | |||
align-self: center; | |||
flex-direction: column; | |||
} | |||
.hheader-form .input{ | |||
width: 300px; | |||
} | |||
} | |||
@media only screen and (max-width: 400px){ | |||
.hheader-form .input{ | |||
width: 200px; | |||
} | |||
.marklist img{ | |||
max-height: 30px!important; | |||
} | |||
} | |||
Version du 16 février 2024 à 20:30
/*############ Custom CSS for WikiThionville. ############*/
/* Responsive content zoom */
@media only screen and (max-width: 270px) {
#bodyContent {
zoom: 0.2;
}
}
@media only screen and (min-width: 270px) {
#bodyContent {
zoom: 0.3;
}
}
@media only screen and (min-width: 340px) {
#bodyContent {
zoom: 0.4;
}
}
@media only screen and (min-width: 415px) {
#bodyContent {
zoom: 0.5;
}
}
@media only screen and (min-width: 570px) {
#bodyContent {
zoom: 0.7;
}
}
@media only screen and (min-width: 730px) {
#bodyContent {
zoom: 0.9;
}
}
@media only screen and (min-width: 850px) {
#bodyContent {
zoom: 1;
}
}
/* Rules for small screen devices like smartphones */
@media only screen and (max-width: 570px) {
#bodyContent tr {
display: flex!important;
flex-direction: column!important;
align-items: center!important;
}
#bodyContent tr td {
width: 98%
}
.citizen-section-collapsible{
zoom: 1.5;
}
.citizen-table-wrapper {
overflow: hidden!important;
border-radius: 25px!important;
}
#bodyContent font {
font-size: 1.3rem!important;
}
.mw-headline {
font-size: 2.5rem!important;
}
.citizen-overflow--right {
-webkit-mask-image:none!important;
-mask-image:none!important;
}
.mw-category-columns {
display: grid;
justify-content: center;
zoom: 2;
}
#bodyContent p {
font-size: 30px!important;
}
#bodyContent h2{
font-size: 45px!important;
}
}
/* General CSS rules */
#bodyContent tr {
display: flex;
flex-direction: row;
align-items: center
}
.citizen-table-wrapper {
border-radius: 15px;
}
#bodyContent table {
border: none!important;
overflow: hidden!important;
}
#bodyContent tr p{
font-size: 1rem!important;
}
.skin-citizen-dark #bodyContent font {
color: var(--color-base--emphasized);
}
/* Home page style below: */
.home-header{
width: 100%;
height: 100vh;
background-size: cover;
background-image: url("./Pont\ wiki.jpg");
display: flex;
flex-direction: column;
color: aliceblue;
align-content: center;
justify-content: center;
align-items: center;
}
.home-header .tinfo{
margin: 1px;
color: rgb(236, 238, 238);
}
.hheader-form{
font-size: 0;
}
.hheader-form .input{
border: 0;
padding-left: 10px;
border-radius: 10px 0 0 10px;
background-color: #212630;
color: aliceblue;
height: 2.5rem;
width: 400px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.hheader-form .input:focus{
outline: none;
}
.hheader-form .btn{
border: 0;
background-color: #212630;
color: aliceblue;
height: 2.5rem;
border-radius: 0 10px 10px 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
transition: all 300ms ;
position: absolute;
cursor: pointer;
}
.home-header h1{
font-size: 3rem;
}
.home-header .enplus{
color: rgb(197, 200, 202);
position: absolute;
bottom: 20px;
text-decoration: none;
display: flex;
flex-direction: row;
align-items: center;
}
.home-header .enplus p{
margin-left: 10px;
clear: both;
display: inline-block;
overflow: hidden;
white-space: nowrap;
width: 0px;
transition: all 500ms;
}
.home-header .enplus:hover > p{
width: 92px;
}
#plusdinfo {
padding-left: 20%;
padding-right: 20%;
padding-top: 200px;
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
#plusdinfo h1{
margin-top: 80px;
background: rgb(241,82,52);
background: -moz-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
background: -webkit-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
background: linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f15234",endColorstr="#edaa7d",GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.cardlist {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}
.cardlist .li{
margin-top: 200px;
display: grid;
max-width: 1350px;
grid-template-columns: repeat(3, 1fr) minmax(auto, 300px);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 40px;
grid-row-gap: 40px;
}
.card {
border-radius: 16px;
border: 1px solid rgba(241, 82, 52, 0.47);
padding: 15px;
background-color: rgb(243, 243, 243);
text-decoration: none;
color: #212630;
transition: all 500ms;
max-width: 300px;
}
.card:hover{
-webkit-box-shadow:0px 0px 60px 20px rgba(241,83,52,0.7);
-moz-box-shadow: 0px 0px 60px 20px rgba(241,83,52,0.7);
box-shadow: 0px 0px 60px 20px rgba(241,83,52,0.7);
transform: scale(1.03);
background-color: rgb(255, 255, 255);
cursor: pointer;
}
.card .header {
display: flex;
justify-content: space-between;
flex-direction: row;
align-items: center;
}
.card .header p{
text-align: end;
margin: 0;
font-size: 1.4rem;
background: rgb(241,82,52);
background: -moz-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
background: -webkit-linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
background: linear-gradient(311deg, rgba(241,82,52,1) 0%, rgba(237,170,125,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f15234",endColorstr="#edaa7d",GradientType=1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
.card .header svg{
min-width: 30px;
min-height: 30px;
}
.degrad{
background: -moz-linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%);
background: linear-gradient(0deg, rgba(20,24,31,1) 10%, rgba(255,255,255,1) 100%);
margin-top: 50px;
padding-top: 250px;
}
.favs {
background: rgb(20,24,31);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#14181f",endColorstr="#ffffff",GradientType=1);
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
color: aliceblue;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.favs h1{
z-index: 100;
font-family: 'Linux Libertine O', sans-serif;
font-size: 3rem;
margin-top: 80px;
}
.favs h1 svg {
z-index: -100;
left: -40px;
width: 70px;
height: 70px;
position: relative;
}
.favs ul {
list-style-type: none;
padding-right: 20px;
padding-left: 20px;
}
.favs li {
border-radius: 16px;
border: 1px solid rgba(241, 82, 52, 0.47);
padding: 15px;
background-color: #212630;
text-decoration: none;
transition: all 500ms;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
}
.favs li a{
text-decoration: none;
color: aliceblue;
}
.marklist {
display: flex;
justify-content: center;
align-items: center;
align-self: center;
flex-direction: column;
padding-top: 50px;
background: rgb(20,24,31);
}
.marklist div{
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
align-self: center;
flex-direction: row;
background: rgb(20,24,31);
}
.marklist img{
filter: grayscale(0.9);
transition: all 500ms;
border-radius: 5px;
}
.marklist img:hover{
filter: grayscale(0);
transform: scale(1.2);
}
.marklist h1{
z-index: 100;
font-family: 'Linux Libertine O', sans-serif;
font-size: 3rem;
margin-top: 80px;
color: aliceblue;
}
@media only screen and (max-width: 850px){
.cardlist .li{
grid-template-columns: repeat(2, 1fr) minmax(auto, 300px);
grid-template-rows: repeat(4, 1fr);
}
h1{
font-size: 2rem!important;
}
}
@media only screen and (max-width: 650px){
.cardlist .li{
grid-template-columns: repeat(1, 1fr) minmax(auto, 300px);
grid-template-rows: repeat(5, 1fr);
}
.marklist img{
max-height: 40px!important;
}
}
@media only screen and (max-width: 500px){
.cardlist .li{
display: flex;
justify-content: space-around;
align-self: center;
flex-direction: column;
}
.hheader-form .input{
width: 300px;
}
}
@media only screen and (max-width: 400px){
.hheader-form .input{
width: 200px;
}
.marklist img{
max-height: 30px!important;
}
}