-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle3.css
More file actions
62 lines (53 loc) · 1.15 KB
/
style3.css
File metadata and controls
62 lines (53 loc) · 1.15 KB
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
@font-face {
font-family: 'Helvetica';
src: url(HelveticaforTarget-Bold.ttf);
}
@font-face {
font-family: 'ballega';
src: url(Cocogoose-Pro-Semilight-trial.ttf);
}
@font-face {
font-family: 'Agricola';
src: url(QOAgricola-Rough.ttf);
}
@font-face {
font-family: 'Heading';
src: url(Heading-Pro-Bold-trial.ttf);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(231, 231, 231);
}
.Voltar .botao {
display: flex;
margin-top: auto;
justify-content: center;
border: 1px solid rgb(24, 153, 24);;
border-radius: 10px;
background-color: rgb(24, 153, 24);
color: white;
padding: .6rem 1rem;
cursor: pointer;
font-size: 0.7rem;
font-family: ballega;
text-transform: uppercase;
text-decoration: none;
transition: 0.25s;
margin-top: 10px;
margin-left: 10px;
}
.botao:hover{
background-color: white;
color: rgb(24, 153, 24);
}
.texto {
text-align: left;
font-size: 2rem;
font-family: Heading;
margin-top: 10px;
transform: translateY(40px);
}