diff --git a/_scss/_global.scss b/_scss/_global.scss
index 8e945d8..2779fc8 100644
--- a/_scss/_global.scss
+++ b/_scss/_global.scss
@@ -1,31 +1,16 @@
-#speakers, #about, #sponsors, #partners, .network, #team {
- .s-container {
- &:first-of-type {
- .profile-img {
- margin-top: 1rem !important;
- margin-bottom: 1rem !important;
- // background-color: #2fb7b7;
+.s-container {
+ &:first-of-type {
+ margin-top: 1rem;
+ @media (max-width: 567px){
+ // @include media-breakpoint-down(xs) {
+ margin-top: 2rem;
}
- }
}
-}
-
-#speakers, #about, #sponsors, #partners, .network, #team, #vision, #faq {
- .s-container {
- &:first-of-type {
- margin-top: 1rem;
- @media (max-width: 567px){
- // @include media-breakpoint-down(xs) {
- margin-top: 2rem;
- }
- }
- &:last-of-type {
+ &:last-of-type {
+ margin-bottom: 4rem;
+ @media (max-width: 567px){
+ // @include media-breakpoint-down(xs) {
margin-bottom: 4rem;
- @media (max-width: 567px){
- // @include media-breakpoint-down(xs) {
- margin-bottom: 4rem;
- }
- // background-color: pink;
}
}
}
@@ -54,8 +39,24 @@
font-size: 18px;
}
}
+ .container-fixed {
+ max-width: 500px;
+ }
+}
+
+
+.g-container {
+ text-align: left;
+ display: block;
+ &:last-of-type {
+ margin-bottom: 4rem;
+ @media (max-width: 567px){
+ margin-bottom: 4rem;
+ }
+ }
}
+
.img-c {
display: flex;
justify-content: center;
@@ -74,6 +75,49 @@
}
}
+.s-container {
+ &:first-of-type {
+ .profile-img {
+ margin-top: 1rem !important;
+ margin-bottom: 1rem !important;
+ }
+ }
+}
+
+.network {
+ .s-container {
+ // margin-top: 1rem;
+ // margin-bottom: 6rem;
+ // @media (max-width: 567px){
+ // margin-top: 2rem;
+ // margin-bottom: 6rem;
+ // }
+ .row {
+ margin-left: -15px;
+ margin-right: -15px;
+ justify-content: center;
+ .col, [class*="col-"] {
+ text-align: center;
+ margin-bottom: 1rem;
+ padding-left: 15px;
+ padding-right: 15px;
+ max-width: 200px;
+ min-width: 200px;
+ margin-left: 0rem;
+ margin-right: 0rem;
+ margin-top: 1.5rem;
+ }
+ img {
+ min-width: 100%;
+ max-width: 100%;
+ }
+ }
+ }
+}
+
+.comp-img {
+ padding-right: 10px;
+}
.markdown-body p, p {
margin-bottom: 0;
@@ -81,62 +125,37 @@
// -----------------
-#sponsors, #partners, .network, #about {
- .s-container {
- @media (min-width: 567px) and (max-width: 786px){
- // @include media-breakpoint-only(sm) {
- margin-bottom: 2.5rem;
- }
- }
- .text-container{
- // text-align: center;
- max-width: 500px;
- }
- .profile-img {
- // text-align: left;
- padding-right: 10px;
- margin-top: 2.75rem; //2
- margin-bottom: 2.75rem; //2
- @media (max-width: 567px){
- // @include media-breakpoint-down(xs){
- margin-left: auto;
- margin-right: auto;
- margin-top: 4rem;
- margin-bottom: 1.5rem;
- }
- }
- .social-media {
- a {
- .fab, .fas, .fa-brands {
- font-size: 1.75rem;
- margin-right: 1rem;
- margin-top: .75rem;
- color: #babfce;
- &:hover {
- color: #4664ee;
- }
- }
- }
+.s-container-extra {
+ @media (min-width: 567px) and (max-width: 786px){
+ // @include media-breakpoint-only(sm) {
+ margin-bottom: 2.5rem;
}
}
-#vision, #faq {
- .s-container {
- text-align: left;
- margin-top: 0 !important;
- display: block;
- }
+.profile-img {
+ // margin-top: 2.75rem;
+ // margin-bottom: 2.75rem;
+ // @media (max-width: 567px){
+ // // @include media-breakpoint-down(xs){
+ // margin-left: auto;
+ // margin-right: auto;
+ // margin-top: 4rem;
+ // margin-bottom: 1.5rem;
+ // }
}
+
+
+
.markdown-body img {
max-width: none;
}
a {
- color: #067799; // #0366d6
+ color: #067799;
text-decoration: none !important;
&:hover {
- color: #0999c5; // #0366d6
+ color: #0999c5;
}
}
@@ -146,7 +165,6 @@ a.g-btn {
padding: .5rem 2rem;
border-radius: 50pt;
&:hover {
- // background-color: rgb(219, 230, 230);
background-color: rgb(228, 240, 241);
}
display: inline-block;
diff --git a/_scss/_icons.scss b/_scss/_icons.scss
new file mode 100644
index 0000000..8cc3f39
--- /dev/null
+++ b/_scss/_icons.scss
@@ -0,0 +1,35 @@
+.social-media-lg a {
+ .fab, .fas, .fa-brands {
+ font-size: 3rem;
+ @media (max-width: 567px) {
+ font-size: 2.5rem;
+ margin-right: 1.75rem;
+ }
+ margin-right: 2rem;
+ margin-bottom: 1rem;
+ color: #43cece;
+ &:hover {
+ color: #2fb7b7;
+ }
+ }
+ &:last-child{
+ .fab, .fas{
+ margin-right: 0;
+ }
+ }
+}
+
+
+.social-media {
+ a {
+ .fab, .fas, .fa-brands {
+ font-size: 1.75rem;
+ margin-right: 1rem;
+ margin-top: .75rem;
+ color: #babfce;
+ &:hover {
+ color: #4664ee;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/_scss/_network.scss b/_scss/_network.scss
deleted file mode 100644
index 8052917..0000000
--- a/_scss/_network.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-.network {
- .s-container {
- margin-top: 1rem;
- margin-bottom: 6rem;
- @media (max-width: 567px){
- margin-top: 2rem;
- margin-bottom: 6rem;
- }
- .row {
- margin-left: -15px;
- margin-right: -15px;
- justify-content: center;
- // padding-top: 1rem;
- @media (max-width: 567px){
- // padding-top: 2rem;
- }
- .col, [class*="col-"] {
- text-align: center;
- margin-bottom: 1rem;
- padding-left: 15px;
- padding-right: 15px;
- max-width: 200px;
- min-width: 200px;
- margin-left: 0rem;
- margin-right: 0rem;
- margin-top: 1.5rem;
- }
- img {
- min-width: 100%;
- max-width: 100%;
- }
- }
- }
-}
\ No newline at end of file
diff --git a/_scss/_vision.scss b/_scss/_vision.scss
index b64801f..518248b 100644
--- a/_scss/_vision.scss
+++ b/_scss/_vision.scss
@@ -2,24 +2,4 @@
p {
margin-bottom: 2rem;
}
- .social-media a {
- .fab, .fas, .fa-brands {
- font-size: 3rem;
- @media (max-width: 567px) {
- font-size: 2.5rem;
- margin-right: 1.75rem;
- }
- margin-right: 2rem;
- margin-bottom: 1rem;
- color: #43cece;
- &:hover {
- color: #2fb7b7;
- }
- }
- &:last-child{
- .fab, .fas{
- margin-right: 0;
- }
- }
- }
}
\ No newline at end of file
diff --git a/_scss/techexcellence.scss b/_scss/techexcellence.scss
index b298147..f8c3887 100644
--- a/_scss/techexcellence.scss
+++ b/_scss/techexcellence.scss
@@ -1,24 +1,21 @@
// Import Bootstrap
// @import "../css/bootstrap/bootstrap.scss";
+// @import "../node_modules/bootstrap/scss/bootstrap";
+
// @import "../node_modules/bootstrap/scss/functions"; //~
// @import "../node_modules/bootstrap/scss/variables";
// @import "../node_modules/bootstrap/scss/mixins";
-// @import "../node_modules/bootstrap/scss/bootstrap";
-
-
@import "global.scss";
-
-
-// HOME
+// HOME ----
@import "masthead.scss";
@import "vision.scss";
@import "team.scss";
@import "community.scss";
@import "speakers.scss";
-@import "network.scss";
+@import "icons.scss";
diff --git a/faq.html b/faq.html
index 6afd031..1437658 100644
--- a/faq.html
+++ b/faq.html
@@ -5,7 +5,7 @@
FAQ
-
+
Where can I join?
diff --git a/package-lock.json b/package-lock.json
index 08e0cbf..ff9ae1a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,17 +1,17 @@
{
- "name": "techexcellence",
+ "name": "community",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"dependencies": {
- "bootstrap": "^5.2.2"
+ "bootstrap": "^5.3.2"
}
},
"node_modules/@popperjs/core": {
- "version": "2.11.6",
- "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
- "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
+ "version": "2.11.8",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
"peer": true,
"funding": {
"type": "opencollective",
@@ -19,9 +19,9 @@
}
},
"node_modules/bootstrap": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz",
- "integrity": "sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz",
+ "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==",
"funding": [
{
"type": "github",
@@ -33,21 +33,21 @@
}
],
"peerDependencies": {
- "@popperjs/core": "^2.11.6"
+ "@popperjs/core": "^2.11.8"
}
}
},
"dependencies": {
"@popperjs/core": {
- "version": "2.11.6",
- "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
- "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
+ "version": "2.11.8",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
"peer": true
},
"bootstrap": {
- "version": "5.2.2",
- "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.2.tgz",
- "integrity": "sha512-dEtzMTV71n6Fhmbg4fYJzQsw1N29hJKO1js5ackCgIpDcGid2ETMGC6zwSYw09v05Y+oRdQ9loC54zB1La3hHQ==",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz",
+ "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==",
"requires": {}
}
}
diff --git a/package.json b/package.json
index bfafe91..3fb9dab 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
"dependencies": {
- "bootstrap": "^5.2.2"
+ "bootstrap": "^5.3.2"
}
}