-
Notifications
You must be signed in to change notification settings - Fork 0
/
proyectos.css
53 lines (46 loc) · 845 Bytes
/
proyectos.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
body{
background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
header{
text-align: center;
}
main{
display: flex;
justify-content: center;
}
.big_conteiner{
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 50%;
border: 2px solid;
border-radius: 25px;
text-align: center;
}
.small_conteiner{
border: 2px solid;
border-radius: 25px;
width: 15rem;
margin: 1.2rem;
transition: transform 1s;
}
.small_conteiner:hover{
transform: scale(1.1);
}
a{
color: #000000;
}
a:hover{
color: #2471A3 ;
}
@media screen and (max-width: 768px) {
.small_conteiner{
width: 12rem;
}
.big_conteiner{
width: 60%;
}
}