a2-projet-web/assets/css/offres.css
2022-03-22 11:23:13 +01:00

103 lines
1.7 KiB
CSS

/*//////////////////////////////////////////////////////////////////
[ OFFRES ]*/
.content_title
{
text-align: center;
margin: 10px;
font-size:calc(30px + 1vw);
font-weight: bold;
}
.bubble {
position: relative;
text-align: center;
margin: 30px;
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: 0;
}
.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;
}
}