-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (55 loc) · 1.14 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
body{
background-color: #ced4da;
font-family: 'IM Fell French Canon SC', serif;
}
h2{
text-align: center;
}
section{
display: block; /* para funcionar o automatico do margin left e right */
margin-left: auto; /* vai jogar tudo possivel para a esquerda */
margin-right: auto;
margin-top: 100px;
max-width:500px;
background-color: #f8f9fa;
padding: 15px;
border-radius: 10px;
-webkit-box-shadow: 5px 5px 15px 5px #000000;
box-shadow: 5px 5px 15px 5px #000000;
}
section h1 {
font-size: 20px;
text-align: center;
}
section h5 {
text-align: center;
}
header{
background-image:url(https://www.dafont.com/forum/attach/orig/8/4/849091.jpg?1) ;
background-size:cover;
border-radius: 10px;
}
a:link
{
text-decoration:none;
color:black;
}
div{
padding: 15px;
border-radius: 10px;
border: 2px solid black;
background-color: #e9ecef;
}
img{
width: 150px;
height: 150px;
border-radius: 100%;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(-50%); /*baseado na altura do elemento */
border: 8px solid white;
}
footer{
font-family:'Libre Barcode 39 Text', cursive;
}