Skip to content

Commit 6228a24

Browse files
Samuel jose Molero gonzalezSamuel jose Molero gonzalez
authored andcommitted
General Fixes
1 parent 732e88a commit 6228a24

File tree

8 files changed

+82
-11
lines changed

8 files changed

+82
-11
lines changed

src/About.css

Lines changed: 58 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
html {
66
scroll-behavior: smooth;
77
}
8-
8+
99

1010
.about-container h1 {
11-
text-align: left;
11+
margin: 20px 0;
1212
font-size: 3rem;
1313
background: linear-gradient(90deg, #ff4d4d, #0085ff);
1414
display: inline-block;
@@ -20,11 +20,23 @@ html {
2020
}
2121

2222
.text {
23-
display: flex;
23+
/* display: flex;
2424
flex-direction: row;
2525
align-items: flex-start; /* Align items to the top */
26+
/* justify-content: space-between;
27+
gap: 20px; */
28+
/* font-size: 1rem;
29+
line-height: 1.5;
30+
margin-bottom: 20px;
31+
justify-content: space-between; */
32+
display: flex;
33+
flex-wrap: wrap;
34+
align-items: flex-start;
35+
font-size: 1rem;
36+
line-height: 1.5;
37+
margin-bottom: 20px;
2638
justify-content: space-between;
27-
gap: 20px;
39+
font-weight: 10rem;
2840

2941
}
3042

@@ -35,11 +47,13 @@ html {
3547
max-height:500px;
3648
max-width: 700px;
3749
font-family: 'Open Sans', sans-serif;
38-
font-weight: 10rem !important;
50+
font-weight: 10rem;
3951
font-size: 1.2rem;
4052
animation: fade-in 2s ease-in-out;
4153
letter-spacing: 1.2px !important;
4254
text-align: justify;
55+
flex: 1;
56+
margin-right: 10px;
4357

4458
}
4559

@@ -68,10 +82,17 @@ html {
6882
}
6983

7084
.side-image {
71-
align-self: flex-start;
85+
/* align-self: flex-start;
7286
height:300px;
7387
margin-right: 200px;
7488
animation: fade-in 2s ease-in-out;
89+
max-width: 100%;
90+
height: auto;
91+
display: block;
92+
margin: 20px auto; */
93+
max-width: 300px;
94+
height: auto;
95+
margin-right: 20rem;
7596
}
7697

7798
.grid-container {
@@ -81,8 +102,39 @@ html {
81102
}
82103

83104
.grid-item {
105+
flex: 1 1 calc(33.333% - 20px);
84106
text-align:center;
107+
box-sizing: border-box;
108+
padding: 20px;
109+
border: 1px solid transparent;
110+
border-radius: 5px;
111+
background-color: transparent;
112+
text-align: center;
113+
114+
}
115+
116+
@media (max-width: 768px) {
117+
.header-section {
118+
font-size: 2rem;
119+
}
120+
121+
.text {
122+
font-size: 0.9rem;
123+
flex-direction: column;
124+
}
125+
126+
.text p {
127+
margin-right: 0;
128+
}
129+
130+
.text2 {
131+
font-size: 1rem;
132+
133+
}
85134

135+
.grid-item {
136+
flex: 1 1 calc(100% - 20px);
137+
}
86138
}
87139

88140
.grid-logo {

src/About.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/App.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ body {
55
font-family: 'Roboto', sans-serif;
66
}
77

8+
@media (max-width: 768px) {
9+
.header-section {
10+
font-size: 2rem;
11+
}
12+
}
13+
814
.App {
915
text-align: center;
1016

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function App() {
3232
</div>
3333
</div>
3434

35-
<a href="https://discord.gg/52RwejHd" className="join-us-button">Join Us</a>
35+
<a href="https://discord.gg/Uzkyn7Xpqq" className="join-us-button">Join Us</a>
3636
</header>
3737

3838
<Routes>

src/Newsletter.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717
margin-bottom: 40px;
1818
}
1919

20+
21+
@media (max-width: 768px) {
22+
.latest-newsletter iframe {
23+
height: 300px;
24+
}
25+
}
26+
2027
.previous-newsletters ul {
2128
list-style-type: none;
2229
padding: 0;

src/Newsletter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Newsletter() {
99

1010
useEffect(() => {
1111

12-
const url = 'https://sheet2api.com/v1/YW0AA7DGRpKC/newsletter-database/Sheet1?';
12+
const url = 'https://sheet2api.com/v1/YW0AA7DGRpKC/newsletter-database';
1313

1414
fetch(url)
1515
.then(response => response.json())

src/Officers.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
-webkit-text-fill-color:transparent;
1010
}
1111

12+
@media (max-width: 768px) {
13+
.header-section {
14+
font-size: 2rem;
15+
}
16+
}
17+
1218
html {
1319
scroll-behavior: smooth;
1420
}

src/Resources.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
flex-direction: column;
44
align-items: center;
55
padding: 20px;
6-
background-color: #f9f9f9;
6+
background-color: #2a2a3c;
77
}
88

99
.header-section {
@@ -18,7 +18,7 @@
1818
max-width: 800px;
1919
margin-bottom: 40px;
2020
padding: 20px;
21-
background-color: #fff;
21+
background-color: #ffffffad;
2222
border-radius: 10px;
2323
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
2424
}

0 commit comments

Comments
 (0)