-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpastores.css
119 lines (111 loc) · 2.39 KB
/
pastores.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
@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@500&family=Roboto&family=Shantell+Sans:wght@300&family=Ubuntu:wght@300&display=swap');
body {
min-height: 100vh;
}
.nav-bg {
margin-top: 20px;
}
.contenedor-secundario {
width: 100%;
height: 100%;
background-image: linear-gradient(to bottom right, transparent 50%, green 50%),
linear-gradient(to top right, blue 50%, transparent 50%);
max-width: 100%;
display: grid;
gap: 100px;
margin-top: 100px;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: auto;
place-items: center;
}
.pastorj {
grid-row: 1/ 2;
grid-column: 1 /2;
}
.pstr1 {
grid-row: 1 / 2;
grid-column: 2 / 3;
margin-top: 70px;
}
.pastorg {
grid-row: 2 / 3;
grid-column: 2 / 3;
}
.pstr2 {
grid-row: 2 / 3;
grid-column: 1/ 2;
margin-top: 70px;
}
@media (max-width: 768px){
.pastorj {
grid-row: 1/ 2;
grid-column: 1 /3;
}
.pstr1 {
grid-row: 2/ 3;
grid-column: 1/ 3;
}
.pastorg {
grid-row: 3/ 4;
grid-column: 1 / 3;
}
.pstr2 {
grid-row: 4 / 5;
grid-column: 1/ 3;
}
.banner_iglesia {
grid-column: 1 / 3;
}
}
.imgpstr{
width: 400px;
height: 100%;
border-radius: 50%;
box-shadow: 6px 15px 25px 15px #1d2b49;
}
@media (max-width: 768px){
.imgpstr {
width: 300px;
height: 300px;
}
}
.pastor__texto {
width: 500px;
height: 100%;
text-align:justify;
color: white;
letter-spacing: 2px;
font-size: 18px;
}
@media (max-width: 768px){
.pastor__texto {
width: 90%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: -50px;
}
}
.pastor__texto p{
font-family: 'Edu TAS Beginner', cursive;
}
.banner_iglesia {
justify-content: center;
align-items: center;
margin-top: 50px;
margin-bottom: 20px;
width: 1200px;
height: 300px;
background: url(banner.jpg);
background-size: cover;
grid-column: 1 / 3;
}
@media (max-width: 768px){
.banner_iglesia {
background: url(HorariosCartelera.jpg);
background-size: cover;
width: 400px;
height: 400px;
}
}