-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpagsCSS.css
85 lines (77 loc) · 1.36 KB
/
pagsCSS.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
@charset "UTF-8";
/* Todas as demais mídias */
body{
margin: 0;
padding: 0;
font-family: Helvetica, sans-serif;
overflow: hidden;
background-image: url(./imagens/wallpaper\ podcast.jpg);
background-position: center top;
background-repeat: no-repeat;
background-size: 125%;
/* background-color: rgb(39, 54, 127); */
}
img{
margin-left: 50px;
width: 250px;
height: 150px;
}
#logoMonteiro{
display: flex;
align-items: center;
width: 100%;
margin: 0;
height: 150px;
padding: 5px 5px 5px 5px;
color: rgb(249, 195, 41);
column-gap: 60%;
}
a{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
color: black;
cursor : pointer;
text-decoration: none;
width: 60%px;
}
a:hover{
background-color: #dcdcdc;
transition: all 1s ease-out;
;
}
iframe{
width: 90%;
}
#links{
display: flex;
flex-direction: column;
row-gap: 50px;
border: solid 2px rgb(249, 195, 41);
box-shadow: 5px 5px 5px 1px #ffc746;
padding: 10px;
position: absolute;
width: 60%;
height: 550px;
background-color: white;
border-radius: 10px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
align-items: center;
justify-content: center;
}
#links h2{
color: rgb(23, 38, 107);
}
#links img{
width: 25px;
height: 25px;
margin: 0 5px;
}
footer {
position: absolute;
bottom: 0;
padding: 10px;
}