111 lines
1.8 KiB
CSS
111 lines
1.8 KiB
CSS
/*//////////////////////////////////////////////////////////////////
|
|
[ GESTIONS ]*/
|
|
|
|
.bubble_content
|
|
{
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.content_title
|
|
{
|
|
text-align: center;
|
|
margin: 10px;
|
|
font-size:calc(30px + 1vw);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bubble {
|
|
width: 300px;
|
|
margin: 10px;
|
|
position: relative;
|
|
text-align: center;
|
|
background-color: var(--black3);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.title_bubble {
|
|
position: relative;
|
|
display: block;
|
|
padding: 10px;
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bubble .centered {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-size:calc(12px + 2vw);
|
|
font-weight: bold;
|
|
color: white;
|
|
width: 100%;
|
|
}
|
|
|
|
.bubble .text_content {
|
|
text-align: center;
|
|
font-size: 1.25em;
|
|
padding: 0 10px 20px 10px;
|
|
}
|
|
|
|
.btnvoir {
|
|
display: block;
|
|
background-color: var(--blue);
|
|
border-radius: 10px;
|
|
border: 4px double #cccccc;
|
|
color: #eeeeee;
|
|
text-align: center;
|
|
font-size: 21px;
|
|
padding: 10px;
|
|
width: 250px;
|
|
transition: all 0.5s;
|
|
cursor: pointer;
|
|
margin: 5px;
|
|
position: relative;
|
|
bottom: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.btnvoir span {
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: relative;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.btnvoir span:after {
|
|
content: "\00bb";
|
|
position: absolute;
|
|
opacity: 0;
|
|
top: 0;
|
|
right: -20px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.btnvoir:hover {
|
|
background-color: #5B73AA;
|
|
}
|
|
|
|
.btnvoir:hover span {
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.btnvoir:hover span:after {
|
|
opacity: 1;
|
|
right: 0;
|
|
}
|
|
|
|
|
|
/*//////////////////////////////////////////////////////////////////
|
|
[ Responsive ]*/
|
|
|
|
@media screen and (max-width: 900px)
|
|
{
|
|
.bubble
|
|
{
|
|
margin: 30px 5px 30px 5px;
|
|
}
|
|
} |