Newer
Older
// Importando os estilos globais
@import '../../sass/styles';
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Letras
.btn-list-el {
position: relative;
left:220px;
border-radius: 4px;
padding: 15px 30px;
cursor:pointer;
outline: 0;
background: $bg-secondary;
text-align: center;
border-right: 3px solid $bg-default;
a {
font-size: 16px;
color: $text-light;
font-weight: bolder;
text-decoration: none;
}
&:hover {
text-decoration: none;
background: $dark-purple;
transition: 0.15s linear;
}
@media screen and (min-width: $break-small + 1) and (max-width: $break-large) {
padding: 10px 5px;
a {
font-size: 11px;
}
}
}
.photos-page {
hyphens: auto;
font-family: $font-default;
color: $text-dark;
h2 {
font-family: $font-header;
font-weight: bolder;
font-size: 36px;
}
h4 {
font-size: 22px;
margin-top: 30px;
font-weight: bolder;
}
label {
font-size: 17px;
font-weight: bolder;
}
}
// Botao "Mais Informacoes"
.btn {
border-width: 4px;
border-radius: 8px;
cursor: pointer;
color: $text-dark;
display: inline-block;
font-size: 18px;
font-family: $font-default;
}
// Botao que adiciona imagem
.add-image {
border-width: 4px;
border-radius: 8px;
cursor: pointer;
color: $text-dark;
//color: #ff0000;
display: inline-block;
font-size: 18px;
font-family: $font-default;
text-align:center;
text-decoration: none;
background: #e9e9e9;
padding: 10px;
margin-top: 10px;
width:100%;
font-weight: normal !important;
&:hover {
background:#b0cfed;
}
}
//Tag para o botao "Mais informacoes"
.more_text {
display: none;
}
.img {
max-width: 100%;
max-height: 100%;
width: 270px;
height: 270px;
align-items: center;
border-radius: 50%;
padding: 10px;
}
//Card que encapsula a imagem
.photos-btn {
align-items: center;
background-color: #b0cfed;
border-radius: 3%;
padding: 5px;
}
//Formulario
.form-style {
background: #c5dcf2;
border-radius: 3%;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: $text-dark;
margin-top: 20px;
width: 100%;
.date-style {
background: #c5dcf2;
border-radius: 3%;
border-top: none;
border-left: none;
border-right: none;
border-bottom-color: $text-dark;
margin-top: 20px;
}