Newer
Older
1
2
3
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Importando os estilos globais
@import '../../sass/styles';
// Letras
.photos-page {
hyphens: auto;
font-family: $font-default;
color: $text-dark;
h2 {
font-family: $font-header;
font-weight: bolder;
font-size: 36px;
}
h3 {
padding: 10px;
}
h4 {
font-size: 22px;
margin-top: 30px;
font-weight: bolder;
}
label {
font-size: 18px;
width: 100%;
}
}
// 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;
}
//Tag para o botao "Mais informacoes"
.more_text {
display: none;
}
// Imagem
.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%;
}
input {
color:$text-dark;
}