-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·54 lines (44 loc) · 881 Bytes
/
style.css
File metadata and controls
executable file
·54 lines (44 loc) · 881 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
html , body{
height: 100%;
width: 100%;
}
body{
background-color:lightseagreen;
display: flex;
justify-content: center;
align-items: center;
}
#contaionar{
height: 400px;
width: 350px;
border-radius: 10px;
position: relative;
background-color:white;
overflow: hidden;
}
#contaionar img{
height: 100%;
width: 100%;
object-fit: cover;
/* object-position: top; */
}
h1{
text-align: center;
background-color: lightseagreen;
}
#contaionar i{
color:red;
font-size: 75px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) scale(0) ;
opacity: 0;
transition: transform ease 0.5s;
}