-
Notifications
You must be signed in to change notification settings - Fork 1
/
certifcado.css
84 lines (71 loc) · 992 Bytes
/
certifcado.css
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
body {
font-family: 'Open Sans', sans-serif;
margin: 0px;
padding: 0px;
border: 0px;
display: flex;
}
.informacoes {
position: absolute;
top: 27.2vh;
width: 72vh;
margin-left: 7.8vh;
height: 58vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.certificado {
display: block;
height: 100vh;
}
.nomeAluno {
font-size: 3.40vh;
font-weight: 800;
}
.participou {
font-size: 1.9vh;
margin-bottom: 2vh;
}
.descricao {
font-size: 3.2vh;
font-weight: 700;
margin-bottom: 2vh;
}
.periodo {
font-size: 2.5vh;
text-align: center;
}
.duracao {
font-size: 2vh;
font-weight: 800;
}
.data {
font-size: 1.9vh;
}
.instrutor {
width: 34vh;
text-align: center;
font-size: 2vh;
font-weight: 600;
}
.--upper {
text-transform: uppercase;
}
.form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.--hidden {
display: none;
}
@media print {
@page {
size: landscape
}
.form {
display: none;
}
}