forked from Technigo/technigo-project-news-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNews pryect.css
142 lines (121 loc) · 2.54 KB
/
News pryect.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
139
140
141
142
html
/* Reseteo de estilos por defecto del navegador */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: darkseagreen;
color: maroon;
}
.logo {
width: 50px;
/* Ajusta este valor al tamaño deseado */
height: auto;
margin-right: 20px;
/* Espacio entre el logo y el título */
vertical-align: right;
/* Alineación vertical con el texto */
text-align: center;
display: flex;
justify-content: flex-start;
}
header {
background: rgba(154, 152, 152, 0.1);
color: rgb(93, 63, 63);
padding: 15px 15px;
text-align: center;
line-height: 1.2;
font-family: Calibri;
display: flex;
align-items: center;
justify-content: space-evenly;
}
nav ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
/* 4 columnas */
gap: 20px;
/* Espacio entre los cuadros*/
padding: 20px;
}
.grid-item {
background: #f4f4f4;
padding: 20px;
border: 1px solid #ddd;
text-align: center;
}
.grid-item img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
.grid-item h2 {
margin-top: 15px;
font-size: 1.5rem;
}
.grid-item p {
margin-top: 10px;
color: rgba(2, 36, 2, 0.896);
}
footer {
background: #33333332;
color: #fff;
text-align: center;
padding: 1rem;
margin-top: 20px;
}
/* Estilos Responsivos */
@media (max-width: 768px) {
.grid-container {
grid-template-columns: repeat(2, 1fr);
/* 2 columnas en pantallas pequeñas */
}
}
@media (max-width: 480px) {
.grid-container {
grid-template-columns: 1fr;
/* 1 columna en pantallas muy pequeñas */
}
nav ul {
flex-direction: column;
}
nav ul li {
margin: 0.5rem 0;
}
}
/* Estilos para los íconos de redes sociales */
.social-media {
margin-top: 10px;
}
.social-media a {
margin: 0 10px;
display: inline-block;
}
.social-media img {
width: 30px;
/* Tamaño de los íconos */
height: auto;
transition: transform 0.3s ease;
}
.social-media a:hover img {
transform: scale(1.1);
/* Efecto de hover para los íconos */
}