-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (86 loc) · 1.8 KB
/
styles.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
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items:center ;
margin:0%;
padding: 0%;
}
.flex-container img{
width: 300px;
height: 300px;
margin:auto;
display: block;
box-shadow: 5px 5px 15px 5px rgb(68, 62, 62);
}
.flex-container img:hover{
filter: blur(5px);
transition: all .3s ease-in;
}
.flex-container img:active{
box-shadow: none;
filter: none;
}
article {
margin-right:5px ;
margin-left: 5px;
margin-bottom: 50px;
flex-basis: 30%;
}
@media (max-width: 768px) {
article {
flex-basis: 48%;;
}
}
@media (max-width: 480px) {
article {
flex-basis: 100%;
}
}
* {
box-sizing: border-box;
background-color: rgb(253, 253, 250);
font-family: 'Lato', sans-serif;
}
.ultnoti {
text-align: center;
margin-top: 2px;
text-shadow: 2px 2px 0px #FFFFFF, 5px 4px 0px rgba(0,0,0,0.15);
}
.art-h3 , .art-p{
text-align: center;
color: black;
background-color: rgb(253, 253, 250) ;
}
/**NOTICIAS INDIVIDUALES**/
.noticia{
border: solid 2px;
border-radius: 10px;
box-shadow: inset;
border-color: #1C6EA4;
padding-left: 30px;
padding-right: 30px;
}
.noticia h2{
text-align: center;
margin-left: 30%;
margin-right: 30%;
color: #130606;
background: #FFFFFF;
text-shadow: 2px 2px 0px #FFFFFF, 5px 4px 0px rgba(0,0,0,0.15);
font-size: 30px;
}
.noticia img{
max-width: 500px;
max-height: 500px;
display: block;
margin: auto;
margin-bottom: 40px;
border-radius: 5px;
box-shadow: 5px 5px 15px 5px rgb(68, 62, 62);
}
.noticia p{
font-size: 20px;
text-align:justify;
color: black;
}