34 lines
580 B
CSS
34 lines
580 B
CSS
/* Center divs */
|
|
.center {
|
|
text-align: center;
|
|
padding-left: 2%;
|
|
padding-right: 2%;
|
|
}
|
|
|
|
/* Input */
|
|
.form-control[type="text"] {
|
|
margin: auto;
|
|
width: 50%;
|
|
font-size: 24px;
|
|
}
|
|
|
|
/* Size of block displaying informations */
|
|
.firstname-constant {
|
|
height: 13em;
|
|
}
|
|
|
|
/* Size of information's text */
|
|
.firstname-constant p {
|
|
font-size: 60px;
|
|
}
|
|
|
|
/* Drop the size of the text when screen is small */
|
|
@media only screen and (max-width : 850px) {
|
|
.firstname-constant {
|
|
height: 7em;
|
|
}
|
|
|
|
.firstname-constant p {
|
|
font-size: 28px;
|
|
}
|
|
}
|