-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (56 loc) · 1.08 KB
/
style.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
@charset "UTF-8";
@font-face {
font-family: minhaFonte;
src: url(/minhaFonte/minhafonte.ttf);
}
* {
margin: 0px;
padding: 0px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: blanchedalmond;
font-family: Arial, Helvetica, sans-serif;
width: 100vw;
}
h1 {
margin: auto;
margin-top: 50px;
text-align: center;
}
#sectionContainer {
background-color: chocolate;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width: 460px;
height: 400px;
padding: 20px;
}
#formulario, input {
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
width: 100px;
margin: 10px;
font-size: 1.2em;
}
footer {
margin-top: 10px;
padding: 5px;
}
footer p, a {
text-decoration: none;
color: black;
font-family: minhaFonte;
text-shadow: -1px 1px 16px black;;
}
a:hover {
color: red;
text-decoration: line-through;
text-shadow: -1px 1px 16px red;
}