-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
105 lines (87 loc) · 1.57 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
:root {
--blue: #807FCB;
--black: #000;
--gray: #525f6b;
--dark-gray: #3c3c4a;
--white: #f5f5f5;
--bg-color: var(--dark-gray);
}
body {
align-items: center;
background-color: var(--bg-color);
box-sizing: border-box;
color: var(--gray);
display: flex;
font-family: 'Open Sans', sans-serif;
min-height: 100vh;
justify-content: center;
width: 100vw;
}
.container {
background-color: var(--white);
border-bottom: 5px solid var(--blue);
border-radius: .75rem;
padding: 2rem;
margin: 1rem;
text-align: center;
}
.logos {
display: flex;
justify-content: space-between;
}
.logo-container {
padding: 1rem;
}
.logo {
margin: 5px;
height: 50px;
width: auto;
}
.titulo {
font-weight: bold;
color: var(--blue);
font-size: 4rem;
text-transform: uppercase;
}
.conclusao {
margin: 2rem 1rem;
}
.aluno {
color: var(--blue);
font-size: 2rem;
font-weight: light;
margin-bottom: 1rem;
}
.conclusao-texto {
margin-bottom: 1rem;
}
.conclusao-link {
color: var(--blue);
}
iframe {
min-width: 80%;
min-height: 40vh;
}
.assinaturas {
display: flex;
align-items: center;
justify-content: center;
margin: 1rem;
}
.assinatura-container {
display: flex;
flex-direction: column;
margin-left: 1rem;
margin-right: 1rem;
}
.assinatura {
border-bottom: 2px solid var(--dark-gray);
margin-bottom: 10px;
max-height: 30px;
padding-bottom: 5px;
}
.assinatura-nome {
text-decoration: none;
color: inherit;
}