-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublicacoes.css
138 lines (110 loc) · 2.44 KB
/
publicacoes.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#publicacoes {
height: 100vh;
background-color: black;
background: url(img/backgroundtex.png) no-repeat center center;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
}
.titulo_pag4{
color: white;
text-align: center;
padding-top: 4vh;
font-size: 30px;
}
.container_pag4 {
height: 80vh;
width: 100vw;
margin-top: 5vh;
display: flex;
justify-content: space-around;
}
.box_job {
background-position: center;
height: 100%;
width: 28%;
background-color: rgb(0, 0, 0);
border: 1px solid rgba(255, 255, 255, 0.5);
filter: grayscale(60%);
background-repeat: no-repeat;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: end;
font-size: 0px;
text-align: center;
}
.box_job > p {
margin: 20px;
text-shadow: 1px 1px 1px #000, 2px 2px 2px #000;
background-color: rgba(0, 0, 0, 0.678);
border-radius: 5px;
}
#job_um {
background-image: url('img/page_4/pk_run.png');
transition: 1s;
}
#job_um:hover {
box-shadow: 1px 1px 30px 1px orange;
filter: grayscale(0%);
scale: 1.02;
font-size: 20px;
color: orange;
}
#job_dois {
background-image: url('img/page_4/conforto_classe.png');
transition: 1s;
}
#job_dois:hover {
box-shadow: 1px 1px 30px 1px purple;
filter: grayscale(0%);
scale: 1.02;
font-size: 20px;
color: white;
}
#job_tres {
background-image: url('img/page_4/memoria.png');
transition: 1s;
}
#job_tres:hover {
box-shadow: 1px 1px 30px 1px black;
filter: grayscale(0%);
scale: 1.02;
font-size: 20px;
color: white;
}
.box_job > a > img {
margin: 10px;
margin-bottom: 20px;
}
@media only screen and (max-width: 1000px){
.container_pag4 {
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.box_job {
width: 80vw;
height: 20vh;
background-position:0px -15px ;
max-width: 250px;
}
#job_um:hover {
font-size: 16px;
}
#job_dois:hover {
font-size: 16px;
}
#job_tres:hover {
font-size: 16px;
}
.box_job > a > img {
height: 40px;
margin-bottom: -20px;
}
.box_job > p {
background-color: #000;
}
}