68 lines
1 KiB
SCSS
68 lines
1 KiB
SCSS
.lightTheme {
|
|
color: black;
|
|
border-color: black;
|
|
}
|
|
.darkTheme {
|
|
color: white;
|
|
border-color: white;
|
|
}
|
|
.myContainer {
|
|
text-align: center;
|
|
max-width: 100vw;
|
|
height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
|
|
.inputSearchBar {
|
|
width: 50%;
|
|
font-size: x-large;
|
|
}
|
|
.btnRechercher {
|
|
border: solid black 1px;
|
|
border-radius: 5px;
|
|
font-size: x-large;
|
|
}
|
|
|
|
|
|
.celluleGrilleVideo {
|
|
border: solid 4px;
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
}
|
|
.lightTheme .celluleGrilleVideo{
|
|
border-color: black;
|
|
background-color: #f0f0f0;
|
|
}
|
|
.darkTheme .celluleGrilleVideo{
|
|
border-color: white;
|
|
background-color: #646464;
|
|
}
|
|
|
|
|
|
.conteneurVideosGrid {
|
|
height: 75vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.cellulePub {
|
|
padding: 0px 10px 0px 10px;
|
|
width: 100%;
|
|
text-align: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.conteneurPub {
|
|
height: 75vh;
|
|
text-align: center;
|
|
justify-content: center;
|
|
vertical-align: middle;
|
|
display: block;
|
|
width: 75%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: absolute;
|
|
top: 50%;
|
|
-ms-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|