├── .gitignore
├── images
├── past2.jpg
├── partner1.png
├── partner2.png
├── partner3.png
├── partner4.png
├── partner5.png
├── speaker1.jpg
├── speaker2.jpg
├── speaker3.jpg
├── speaker4.jpg
├── speaker6.jpg
├── black_bk6.jpg
├── pastwrok1.jpg
├── speaker 6.jpg
├── Fashion Phest.png
└── background top.jpg
├── .hintrc
├── .eslintrc.json
├── .stylelintrc.json
├── package.json
├── script.js
├── .github
└── workflows
│ └── linters.yml
├── README.md
├── about.html
├── index.html
└── style.css
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/images/past2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/past2.jpg
--------------------------------------------------------------------------------
/images/partner1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/partner1.png
--------------------------------------------------------------------------------
/images/partner2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/partner2.png
--------------------------------------------------------------------------------
/images/partner3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/partner3.png
--------------------------------------------------------------------------------
/images/partner4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/partner4.png
--------------------------------------------------------------------------------
/images/partner5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/partner5.png
--------------------------------------------------------------------------------
/images/speaker1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker1.jpg
--------------------------------------------------------------------------------
/images/speaker2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker2.jpg
--------------------------------------------------------------------------------
/images/speaker3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker3.jpg
--------------------------------------------------------------------------------
/images/speaker4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker4.jpg
--------------------------------------------------------------------------------
/images/speaker6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker6.jpg
--------------------------------------------------------------------------------
/images/black_bk6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/black_bk6.jpg
--------------------------------------------------------------------------------
/images/pastwrok1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/pastwrok1.jpg
--------------------------------------------------------------------------------
/images/speaker 6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/speaker 6.jpg
--------------------------------------------------------------------------------
/images/Fashion Phest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/Fashion Phest.png
--------------------------------------------------------------------------------
/images/background top.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Lornakaboro/Fashion-week/HEAD/images/background top.jpg
--------------------------------------------------------------------------------
/.hintrc:
--------------------------------------------------------------------------------
1 | {
2 | "connector": {
3 | "name": "local",
4 | "options": {
5 | "pattern": ["**", "!.git/**", "!node_modules/**"]
6 | }
7 | },
8 | "extends": ["development"],
9 | "formatters": ["stylish"],
10 | "hints": [
11 | "button-type",
12 | "disown-opener",
13 | "html-checker",
14 | "meta-charset-utf-8",
15 | "meta-viewport",
16 | "no-inline-styles:error"
17 | ]
18 | }
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "es6": true,
5 | "jest": true
6 | },
7 | "parser": "babel-eslint",
8 | "parserOptions": {
9 | "ecmaVersion": 2018,
10 | "sourceType": "module"
11 | },
12 | "extends": ["airbnb-base"],
13 | "rules": {
14 | "no-shadow": "off",
15 | "no-param-reassign": "off",
16 | "eol-last": "off",
17 | "import/extensions": [ 1, {
18 | "js": "always", "json": "always"
19 | }]
20 | },
21 | "ignorePatterns": [
22 | "dist/",
23 | "build/"
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------
/.stylelintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["stylelint-config-standard"],
3 | "plugins": ["stylelint-scss", "stylelint-csstree-validator"],
4 | "rules": {
5 | "at-rule-no-unknown": [
6 | true,
7 | {
8 | "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"]
9 | }
10 | ],
11 | "scss/at-rule-no-unknown": [
12 | true,
13 | {
14 | "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"]
15 | }
16 | ],
17 | "csstree/validator": true
18 | },
19 | "ignoreFiles": ["build/**", "dist/**", "**/reset*.css", "**/bootstrap*.css", "**/*.js", "**/*.jsx"]
20 | }
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "fashion-week",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "script.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "git+https://github.com/shegy28/Fashion-week.git"
12 | },
13 | "author": "",
14 | "license": "ISC",
15 | "bugs": {
16 | "url": "https://github.com/shegy28/Fashion-week/issues"
17 | },
18 | "homepage": "https://github.com/shegy28/Fashion-week#readme",
19 | "devDependencies": {
20 | "babel-eslint": "^10.1.0",
21 | "eslint": "^7.32.0",
22 | "eslint-config-airbnb-base": "^14.2.1",
23 | "eslint-plugin-import": "^2.26.0",
24 | "stylelint": "^13.13.1",
25 | "stylelint-config-standard": "^21.0.0",
26 | "stylelint-csstree-validator": "^1.9.0",
27 | "stylelint-scss": "^3.21.0"
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/script.js:
--------------------------------------------------------------------------------
1 | function openNav() {
2 | document.getElementById('drop-down').style.display = 'block';
3 | document.getElementById('container').style.filter = 'blur(7px)';
4 | }
5 | openNav();
6 |
7 | function closeNav() {
8 | document.getElementById('drop-down').style.display = 'none';
9 | document.getElementById('container').style.filter = 'blur(0px)';
10 | }
11 | closeNav();
12 |
13 | const speakers = [
14 | {
15 | name: 'Mary Jane',
16 | image: './images/speaker1.jpg',
17 | details1: 'Known as "MJ", is an American fashion designer and the creator of DKNY clothing labels.',
18 | details2: 'Education: Parsons School of Design | The New School.',
19 | },
20 |
21 | {
22 | name: 'Marc Jacobs',
23 | image: './images/speaker2.jpg',
24 | details1: 'Marc Jacobs is an American fashion designer.',
25 | details2: 'He is the head designer for his own fashion label, Marc Jacobs.',
26 | },
27 |
28 | {
29 | name: 'Stella McCartney',
30 | image: './images/speaker3.jpg',
31 | details1: 'Stella Nina McCartney CBE is an English fashion designer.',
32 | details2: 'She is a daughter of British singer-songwriter Paul McCartney.',
33 | },
34 |
35 | {
36 | name: 'Giorgio Armani',
37 | image: './images/speaker4.jpg',
38 | details1: 'He formed his company, Armani, in 1975, which expanded into, sport and luxury hotels.',
39 | details2: 'Education: Parsons School of Design | The New School.',
40 | },
41 |
42 | {
43 | name: 'Rihanna',
44 | image: './images/speaker6.jpg',
45 | details1: 'Robyn Rihanna Fenty NH is a Barbadian singer, and businesswoman.',
46 | details2: 'Organizations: Fenty Beauty, Clara Lionel Foundation, Fenty.',
47 | },
48 |
49 | {
50 | name: 'Wizkid',
51 | image: './images/speaker 6.jpg',
52 | details1: 'Ayodeji Ibrahim Balogun, known professionally as Wizkid, is a Nigerian singer and songwriter.',
53 | details2: 'Awards: MTV Europe Music Award for Best African Act.',
54 | },
55 | ];
56 |
57 | for (let i = 0; i < speakers.length; i += 1) {
58 | document.querySelector('.speakers-holder').innerHTML += `
59 |
60 |
61 |
62 |
63 |
64 |
${speakers[i].name}
65 |
${speakers[i].details1}
66 |
67 |
68 |
69 |
${speakers[i].details2}
70 |
71 |
72 |
73 | `;
74 | }
--------------------------------------------------------------------------------
/.github/workflows/linters.yml:
--------------------------------------------------------------------------------
1 | name: Linters
2 |
3 | on: pull_request
4 |
5 | env:
6 | FORCE_COLOR: 1
7 |
8 | jobs:
9 | lighthouse:
10 | name: Lighthouse
11 | runs-on: ubuntu-22.04
12 | steps:
13 | - uses: actions/checkout@v2
14 | - uses: actions/setup-node@v1
15 | with:
16 | node-version: "12.x"
17 | - name: Setup Lighthouse
18 | run: npm install -g @lhci/cli@0.7.x
19 | - name: Lighthouse Report
20 | run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=.
21 | webhint:
22 | name: Webhint
23 | runs-on: ubuntu-22.04
24 | steps:
25 | - uses: actions/checkout@v2
26 | - uses: actions/setup-node@v1
27 | with:
28 | node-version: "12.x"
29 | - name: Setup Webhint
30 | run: |
31 | npm install --save-dev hint@7.x
32 | [ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css-js/.hintrc
33 | - name: Webhint Report
34 | run: npx hint .
35 | stylelint:
36 | name: Stylelint
37 | runs-on: ubuntu-22.04
38 | steps:
39 | - uses: actions/checkout@v2
40 | - uses: actions/setup-node@v1
41 | with:
42 | node-version: "12.x"
43 | - name: Setup Stylelint
44 | run: |
45 | npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
46 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css-js/.stylelintrc.json
47 | - name: Stylelint Report
48 | run: npx stylelint "**/*.{css,scss}"
49 | eslint:
50 | name: ESLint
51 | runs-on: ubuntu-22.04
52 | steps:
53 | - uses: actions/checkout@v2
54 | - uses: actions/setup-node@v1
55 | with:
56 | node-version: "12.x"
57 | - name: Setup ESLint
58 | run: |
59 | npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
60 | [ -f .eslintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css-js/.eslintrc.json
61 | - name: ESLint Report
62 | run: npx eslint .
63 | nodechecker:
64 | name: node_modules checker
65 | runs-on: ubuntu-22.04
66 | steps:
67 | - uses: actions/checkout@v2
68 | - name: Check node_modules existence
69 | run: |
70 | if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi
71 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | # 📖 [Fashion Week 2022]
5 |
6 | > A website that tell and shows more information about a fashion event that is held annually.
7 |
8 | **[Fashion Week 2022]** is a Capstone from microverse.
9 |
10 | ## 🛠 Built With
11 |
12 | ### Tech Stack
13 |
14 |
15 | HTML
16 |
19 |
20 |
21 |
22 | CSS
23 |
26 |
27 |
28 |
29 | JAVASCRIPT
30 |
33 |
34 |
35 |
36 |
37 | ### Key Features
38 |
39 | - **Responsive for both Desktop and Mobile**
40 | - **Speaker Section created dynamically**
41 | - **Designed with mobile first concept**
42 |
43 | (back to top )
44 |
45 |
46 |
47 | ## 🚀 Live Demo
48 |
49 | > Add a link to your deployed project.
50 |
51 | - [Live Demo Link](https://shegy28.github.io/Fashion-week/)
52 |
53 | (back to top )
54 |
55 |
56 |
57 | ## 💻 Getting Started
58 |
59 | To get a local copy up and running, follow these steps.
60 |
61 | ### Prerequisites
62 |
63 | -Code Editor:[visual Studio code](https://code.visualstudio.com/)
64 | -Web Browser
65 |
72 | ### Setup
73 |
74 | Clone this repository to your desired folder:
75 |
76 | ```sh
77 | cd my-folder
78 | git clone https://github.com/shegy28/Fashion-week.git
79 | ```
80 | (back to top )
81 |
82 |
83 | ## 👥 Authors
84 |
85 | 👤 **Author1**
86 |
87 | - GitHub: [@Shegy28](https://github.com/shegy28)
88 | - Twitter: [@Shegy28](https://twitter.com/twitterhandle)
89 | - LinkedIn: [LinkedIn](https://www.linkedin.com/in/chimezie-asouzu-67704224a/)
90 | (back to top )
91 |
92 |
93 |
94 | ## 🔭 Future Features
95 |
96 | - [ ] **A ticket Booking page**
97 | - [ ] **A gallery page**
98 | - [ ] **Competition page**
99 |
100 | (back to top )
101 |
102 |
103 |
104 | ## 🤝 Contributing
105 |
106 | Contributions, issues, and feature requests are welcome!
107 |
108 | Feel free to check the [issues page](https://github.com/shegy28/Fashion-week/issues).
109 |
110 | (back to top )
111 |
112 |
113 |
114 | ## ⭐️ Show your support
115 |
116 | If you like this project please share and contribute
117 |
118 | (back to top )
119 |
120 |
121 |
122 | ## 🙏 Acknowledgments
123 |
124 | > Give credit to everyone who inspired your codebase.
125 |
126 | I would like to thank [Cindy Shin](https://www.behance.net/adagio07)
127 |
128 | (back to top )
129 |
130 |
131 |
132 | (back to top )
133 |
134 |
135 |
136 | ## 📝 License
137 |
138 | This project is [Creative Commons](https://creativecommons.org/licenses/by-nc/4.0/) licensed.
139 |
140 | (back to top )
141 |
--------------------------------------------------------------------------------
/about.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Fashion Week
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
36 |
37 |
38 |
39 |
65 |
66 |
72 |
73 |
The annual Fashion week brings together the community of designers, artists, and musicians who comprise the Fashion Phest affilaite network in a different countries. This year we hope to expand our invitation list including fashion houses and designers.
74 |
75 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
107 |
108 |
109 |
110 |
2021
111 |
FP Fashion Week 2021 in Lagos
112 |
113 |
114 |
115 |
116 |
117 |
2019
118 |
FP Fashion Week 2019 in Accra
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
130 |
134 |
135 |
139 |
140 |
141 |
142 |
143 |
144 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Fashion Week
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
36 |
37 |
38 |
39 |
65 |
66 |
72 |
73 |
A Fashion celebration believing in the value of openess and sharing, creating a fashion trend with people from over 80 countries, taking place December Lagos, Nigeria.
74 |
75 |
76 |
2022.10.12(FRI) ~ 12(SAT)
77 |
@ National Gallery of Modern Art, Iganmu
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | co_present
94 |
95 |
96 |
Lecture
97 |
98 |
99 |
Listen to the designer from various countries about the fashion latest trends.
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 | diversity_1
108 |
109 |
110 |
Exhition
111 |
112 |
113 |
Appreciate various creations applying to fashion license of artist, organized from Lagos art center.
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
Forum
123 |
124 |
125 |
Have time to share your thoughts and opinions with experts for each topic.
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
Workshop
135 |
136 |
137 |
Try creating your own work using using tools that would be provided instead of just watching.
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
Network
147 |
148 |
149 |
Get opportunities to network with FP affailiates around the world, also after the fashion week.
150 |
151 |
152 |
153 |
154 |
155 | Join FP Fashion Week 2022
156 |
157 |
158 | SEE THE WHOLE PROGRAM
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
194 |
195 |
198 |
202 |
203 |
207 |
208 |
209 |
210 |
211 |
212 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | box-sizing: border-box;
5 | }
6 |
7 | /* for mobile menu */
8 | .mobile-menu {
9 | background-color: #ec4242de;
10 | height: 100vh;
11 | width: 100%;
12 | position: fixed;
13 | z-index: 1;
14 | display: none;
15 | animation-duration: 0.7s;
16 | animation-name: slidein;
17 | }
18 |
19 | @keyframes slidein {
20 | from {
21 | margin-right: 100%;
22 | width: 300%;
23 | }
24 |
25 | to {
26 | margin-right: 0%;
27 | width: 100%;
28 | }
29 | }
30 |
31 | .x-icon {
32 | text-align: end;
33 | font-size: xx-large;
34 | padding: 4% 8%;
35 | }
36 |
37 | .mobile-nav {
38 | display: flex;
39 | flex-direction: column;
40 | list-style: none;
41 | gap: 20px;
42 | }
43 |
44 | .mobile-nav li a {
45 | font-family: 'lato', sans-serif;
46 | font-style: normal;
47 | font-weight: 600;
48 | font-size: 32px;
49 | line-height: 44px;
50 | color: #2b2e35;
51 | text-decoration: none;
52 | }
53 |
54 | .mobile-logo {
55 | width: auto;
56 | height: 60px;
57 | }
58 |
59 | /* mobile menu ends */
60 |
61 | .main-container {
62 | margin: 0;
63 | height: 100vh;
64 | }
65 |
66 | .top-section {
67 | background-image: url("./images/background\ top.jpg");
68 | height: auto;
69 | background-repeat: no-repeat;
70 | background-size: cover;
71 | padding-bottom: 10%;
72 | }
73 |
74 | header {
75 | padding: 20px 20px;
76 | }
77 |
78 | .hamburger-icon {
79 | font-size: xx-large;
80 | }
81 |
82 | .hero-section {
83 | margin: 0 5%;
84 | padding-top: 30px;
85 | }
86 |
87 | .hero-header-div div h3 {
88 | color: brown;
89 | font-family: 'lato', sans-serif;
90 | margin: 0 0;
91 | font-size: 25px;
92 | }
93 |
94 | .hero-header-div h1 {
95 | margin: 10px 0;
96 | font-family: 'lato', sans-serif;
97 | font-size: 45px;
98 | font-weight: 900;
99 | margin-bottom: 30px;
100 | color: #c21b09;
101 | line-height: 1em;
102 | }
103 |
104 | .fashion-quote {
105 | text-align: left;
106 | color: #272a31;
107 | padding: 0 4%;
108 | background-color: rgb(183, 187, 192, 0.4);
109 | border: 2px solid #ffff;
110 | font-family: 'lato', sans-serif;
111 | font-size: 13px;
112 | font-weight: 600;
113 | }
114 |
115 | .time-location h2 {
116 | margin: 4% 1%;
117 | font-family: 'lato', sans-serif;
118 | font-size: 28px;
119 | font-weight: 900;
120 | color: #272a31;
121 | line-height: 1em;
122 | }
123 |
124 | .time-location p {
125 | margin: 4% 1%;
126 | font-family: 'lato', sans-serif;
127 | font-size: 17px;
128 | font-weight: 600;
129 | color: #272a31;
130 | line-height: 1em;
131 | }
132 |
133 | .program-section {
134 | background-image: url("https://removal.ai/wp-content/uploads/2021/09/black-background-09-wallpaperaccess.png");
135 | background-repeat: no-repeat;
136 | background-size: cover;
137 | padding-top: 20px;
138 | padding-bottom: 20px;
139 | }
140 |
141 | .program-header {
142 | margin-top: 0;
143 | margin-bottom: 0;
144 | text-align: center;
145 | font-family: "Lato", sans-serif;
146 | color: #fff;
147 | font-size: 24px;
148 | }
149 |
150 | .hr {
151 | border: 0.5px solid #ec5242;
152 | margin: 3% auto;
153 | width: 8%;
154 | }
155 |
156 | .programs-holder {
157 | margin: 10% 3% 0 3%;
158 | list-style: none;
159 | padding: 0;
160 | }
161 |
162 | .programs {
163 | display: flex;
164 | align-items: center;
165 | justify-content: space-between;
166 | background-color: #272a31;
167 | list-style: none;
168 | margin-bottom: 9px;
169 | padding: 5% 5%;
170 | opacity: 0.8;
171 | }
172 |
173 | .program-icon {
174 | display: flex;
175 | gap: 13%;
176 | width: 50%;
177 | flex-shrink: 0;
178 | }
179 |
180 | .program-icon div i,
181 | .program-icon div span {
182 | font-size: xx-large;
183 | color: #fff;
184 | margin: 15px 0;
185 | }
186 |
187 | .program-icon h4 {
188 | color: #ec5242;
189 | font-family: "Lato", sans-serif;
190 | font-size: 18px;
191 | font-weight: 900;
192 | }
193 |
194 | .program-text {
195 | color: #fff;
196 | font-family: "Lato", sans-serif;
197 | font-size: 12px;
198 | letter-spacing: 1px;
199 | flex-shrink: 1;
200 | }
201 |
202 | .button {
203 | display: flex;
204 | justify-content: center;
205 | margin: 40px 0 20px 0;
206 | }
207 |
208 | .red-button {
209 | padding: 5% 7%;
210 | font-family: 'lato', sans-serif;
211 | font-size: 16px;
212 | font-weight: 600;
213 | margin: 0 auto;
214 | background-color: #ec5242;
215 | color: #f0f2f5;
216 | border: 0;
217 | }
218 |
219 | .speakers-section {
220 | padding-top: 10px;
221 | padding-bottom: 30px;
222 | background-image: url("./images/background\ top.jpg");
223 | }
224 |
225 | .speaker-header {
226 | margin-top: 10px;
227 | margin-bottom: 0;
228 | text-align: center;
229 | font-family: "Lato", sans-serif;
230 | color: #272a31;
231 | font-size: 24px;
232 | }
233 |
234 | .speakers-holder {
235 | display: flex;
236 | flex-direction: column;
237 | margin: 0 3%;
238 | }
239 |
240 | .speaker {
241 | display: flex;
242 | gap: 5%;
243 | margin-bottom: 10px;
244 | }
245 |
246 | .speaker-image img {
247 | width: 130px;
248 | height: 130px;
249 | margin-top: 30px;
250 | background-size: contain;
251 | }
252 |
253 | .speaker-name {
254 | font-size: 20px;
255 | margin-bottom: 0;
256 | text-align: left;
257 | font-family: "Lato", sans-serif;
258 | color: #272a31;
259 | font-weight: 900;
260 | }
261 |
262 | .speaker-title {
263 | font-size: 13px;
264 | font-style: italic;
265 | margin-bottom: 0;
266 | text-align: left;
267 | font-family: "Lato", sans-serif;
268 | color: #ec5242;
269 | font-weight: 900;
270 | }
271 |
272 | .speaker-title2 {
273 | font-size: 13px;
274 | margin-bottom: 0;
275 | text-align: left;
276 | font-family: "Lato", sans-serif;
277 | color: #272a31;
278 | font-weight: 700;
279 | }
280 |
281 | .hr2 {
282 | border: 0.5px solid #272a31;
283 | margin: 3% 0;
284 | width: 8%;
285 | }
286 |
287 | .partners-section {
288 | background-color: #272a31;
289 | padding-top: 50px;
290 | padding-bottom: 10px;
291 | }
292 |
293 | .partners {
294 | display: flex;
295 | flex-wrap: wrap;
296 | margin: 40px 20px;
297 | gap: 10px;
298 | align-items: center;
299 | justify-content: center;
300 | }
301 |
302 | .partner-img {
303 | width: 30%;
304 | }
305 |
306 | .partner-img img {
307 | width: 100%;
308 | }
309 |
310 | footer {
311 | display: flex;
312 | justify-content: space-between;
313 | padding: 6% 6%;
314 | gap: 3%;
315 | }
316 |
317 | .footer-image {
318 | width: 40%;
319 | }
320 |
321 | .footer-image img {
322 | width: 150px;
323 | height: 50px;
324 | }
325 |
326 | .footer-text {
327 | font-size: 11px;
328 | font-family: "Lato", sans-serif;
329 | color: #272a31;
330 | font-weight: 900;
331 | margin-top: 20px;
332 | }
333 |
334 | .footer-text p {
335 | margin: 0;
336 | letter-spacing: 1px;
337 | }
338 |
339 | /* About us style below */
340 |
341 | .about-hero {
342 | text-align: center;
343 | }
344 |
345 | .about-quote {
346 | background-color: #b7bbc0;
347 | opacity: 0.9;
348 | text-align: center;
349 | }
350 |
351 | .contact-quote {
352 | text-align: center;
353 | color: #272a31;
354 | padding: 0 4%;
355 | font-family: 'lato', sans-serif;
356 | font-size: 13px;
357 | font-weight: 600;
358 | }
359 |
360 | .about-email {
361 | font-weight: 900;
362 | text-decoration: underline;
363 | line-height: 2%;
364 | letter-spacing: normal;
365 | }
366 |
367 | .logo-section {
368 | padding-top: 10%;
369 | }
370 |
371 | .logo-holder {
372 | margin: 8% 5% 12% 5%;
373 | border: solid 1px #272a31;
374 | }
375 |
376 | .logo-holder img {
377 | width: 100%;
378 | }
379 |
380 | .line {
381 | width: 98%;
382 | border-color: #b7bbc0;
383 | margin: 0 auto;
384 | }
385 |
386 | .logo-hr {
387 | margin-bottom: 8%;
388 | }
389 |
390 | .past-event {
391 | display: flex;
392 | flex-direction: column;
393 | margin-top: 10%;
394 | gap: 20px;
395 | }
396 |
397 | .past-event1 {
398 | margin: 0 3%;
399 | background-image: linear-gradient(rgba(228, 43, 23, 0.5), rgba(221, 43, 23, 0.5)), url(./images/pastwrok1.jpg);
400 | padding: 10% 20%;
401 | background-size: cover;
402 | background-repeat: no-repeat;
403 | }
404 |
405 | .past-event2 {
406 | margin: 0 3%;
407 | background-image: linear-gradient(rgba(228, 43, 23, 0.5), rgba(221, 43, 23, 0.5)), url(./images/past2.jpg);
408 | padding: 10% 20%;
409 | background-size: cover;
410 | background-repeat: no-repeat;
411 | }
412 |
413 | .past-year {
414 | font-family: 'lato', sans-serif;
415 | font-weight: 900;
416 | color: #f0f2f5;
417 | text-align: center;
418 | }
419 |
420 | .past-year h4 {
421 | font-size: 20px;
422 | }
423 |
424 | .programs:hover {
425 | border: #f0f2f5 solid 1px;
426 | }
427 |
428 | .navbar-1,
429 | .menu,
430 | .see-more,
431 | .footer-text1,
432 | .span-logo-quote {
433 | display: none;
434 | }
435 |
436 | @media only screen and (min-width: 768px) {
437 | .hamburger-icon {
438 | display: none;
439 | }
440 |
441 | .top-section {
442 | padding-bottom: 1%;
443 | }
444 |
445 | header {
446 | padding: 0;
447 | }
448 |
449 | .navbar-1 {
450 | padding: 0.8% 13%;
451 | background-color: #2b2e35;
452 | display: flex;
453 | align-items: center;
454 | justify-content: end;
455 | gap: 3%;
456 | }
457 |
458 | .navbar-1 i {
459 | color: white;
460 | font-size: larger;
461 | }
462 |
463 | .nav-items {
464 | color: #f0f2f5;
465 | font-size: 16px;
466 | font-family: "Lato", sans-serif;
467 | text-decoration: none;
468 | }
469 |
470 | .menu {
471 | display: flex;
472 | flex-direction: row;
473 | justify-content: space-between;
474 | align-items: center;
475 | margin: 0;
476 | padding: 0% 13%;
477 | background-color: #fff;
478 | }
479 |
480 | .desktop-logo img {
481 | width: 40%;
482 | }
483 |
484 | .navbar-2 {
485 | display: flex;
486 | flex-direction: row;
487 | justify-content: flex-end;
488 | align-items: center;
489 | list-style: none;
490 | gap: 5%;
491 | width: 60%;
492 | margin: 0;
493 | }
494 |
495 | .nav-items2 {
496 | color: #272a31;
497 | font-size: 18px;
498 | font-weight: 900;
499 | font-family: "Lato", sans-serif;
500 | text-decoration: none;
501 | }
502 |
503 | .campaign {
504 | border: #c21b09 solid 4px;
505 | padding: 3%;
506 | flex-shrink: 0;
507 | }
508 |
509 | .campaign-text {
510 | color: #c21b09;
511 | }
512 |
513 | .hero-section {
514 | margin: 7% 13%;
515 | }
516 |
517 | .hero-header-div {
518 | width: 70%;
519 | }
520 |
521 | .hero-header-div div h3 {
522 | font-size: 39px;
523 | }
524 |
525 | .hero-header-div h1 {
526 | font-size: 80px;
527 | }
528 |
529 | .fashion-quote {
530 | width: 60%;
531 | background-color: rgb(183, 187, 192, 0.6);
532 | padding: 1% 1% 1% 2%;
533 | }
534 |
535 | .fashion-quote p {
536 | font-size: 18px;
537 | }
538 |
539 | .time-location h2 {
540 | font-size: 48px;
541 | margin: 4% 0 0 0;
542 | }
543 |
544 | .time-location p {
545 | font-size: 40px;
546 | margin: 1% 0 0 0;
547 | }
548 |
549 | .program-section {
550 | padding-top: 5%;
551 | }
552 |
553 | .program-header {
554 | font-size: 40px;
555 | }
556 |
557 | .programs-holder {
558 | padding: 1% 5%;
559 | display: flex;
560 | flex-direction: row;
561 | gap: 1%;
562 | margin: 0;
563 | }
564 |
565 | .programs {
566 | flex-direction: column;
567 | padding: 2%;
568 | text-align: center;
569 | }
570 |
571 | .program-icon {
572 | flex-direction: column;
573 | text-align: center;
574 | width: auto;
575 | }
576 |
577 | .program-icon div span,
578 | .program-icon div i {
579 | font-size: 60px;
580 | }
581 |
582 | .program-icon h4 {
583 | color: #ec5242;
584 | font-family: "Lato", sans-serif;
585 | font-size: 30px;
586 | font-weight: 900;
587 | margin: 0;
588 | }
589 |
590 | .program-text {
591 | font-size: 16px;
592 | letter-spacing: normal;
593 | }
594 |
595 | .button {
596 | display: none;
597 | }
598 |
599 | .see-more {
600 | display: flex;
601 | justify-content: center;
602 | color: #fff;
603 | font-family: "Lato", sans-serif;
604 | font-size: 20px;
605 | text-decoration: underline;
606 | margin: 5% 0;
607 | }
608 |
609 | .speakers-section {
610 | padding-top: 50px;
611 | }
612 |
613 | .speakers-holder {
614 | display: flex;
615 | flex-direction: row;
616 | margin: 0 5%;
617 | flex-wrap: wrap;
618 | justify-content: space-between;
619 | }
620 |
621 | .speaker-header {
622 | font-size: 40px;
623 | }
624 |
625 | .speaker {
626 | display: flex;
627 | gap: 5%;
628 | margin-bottom: 10px;
629 | width: 48%;
630 | }
631 |
632 | .speaker-name {
633 | font-size: 22px;
634 | }
635 |
636 | .speaker-title,
637 | .speaker-title2 {
638 | font-size: 16px;
639 | }
640 |
641 | .partners {
642 | flex-wrap: nowrap;
643 | margin: 40px 110px;
644 | }
645 |
646 | footer {
647 | display: flex;
648 | justify-content: center;
649 | padding: 3% 0%;
650 | }
651 |
652 | .footer-image {
653 | width: auto;
654 | }
655 |
656 | .footer-image img {
657 | width: auto;
658 | height: 70px;
659 | flex-shrink: 0;
660 | }
661 |
662 | .footer-text {
663 | display: none;
664 | }
665 |
666 | .footer-text1 {
667 | display: inline;
668 | font-size: 17px;
669 | flex-shrink: 1;
670 | font-family: "Lato", sans-serif;
671 | color: #272a31;
672 | font-weight: 400;
673 | margin-top: 20px;
674 | }
675 |
676 | /* about page */
677 |
678 | .about-hero,
679 | .about-quote {
680 | margin: 0 auto;
681 | }
682 |
683 | .contact-quote {
684 | font-size: 18px;
685 | }
686 |
687 | .about-hero div h3 {
688 | display: none;
689 | }
690 |
691 | .logo-quote {
692 | width: 50%;
693 | margin: 0 auto;
694 | }
695 |
696 | .break {
697 | display: none;
698 | }
699 |
700 | .span-logo-quote {
701 | display: inline;
702 | }
703 |
704 | .logo-section {
705 | padding-top: 3%;
706 | }
707 |
708 | .logo-hr {
709 | margin: 2% auto;
710 | }
711 |
712 | .logo-holder {
713 | border: solid 1px #272a31;
714 | width: 35%;
715 | margin: 3% auto;
716 | }
717 |
718 | .past-event {
719 | margin-top: 4%;
720 | flex-direction: row;
721 | gap: 0;
722 | }
723 |
724 | .past-event1,
725 | .past-event2 {
726 | padding: 0;
727 | width: 45%;
728 | }
729 |
730 | .past-year {
731 | font-family: 'lato', sans-serif;
732 | font-weight: 900;
733 | color: #f0f2f5;
734 | text-align: center;
735 | width: 300px;
736 | margin: 20% auto;
737 | }
738 |
739 | .past-year h4 {
740 | font-size: 30px;
741 | margin: 0;
742 | font-weight: 900;
743 | }
744 |
745 | .navbar-1 :hover,
746 | .menu :hover {
747 | color: #ec5242;
748 | text-decoration: none;
749 | }
750 |
751 | .ft {
752 | background-color: #272a31;
753 | }
754 |
755 | .abt-ft {
756 | color: #fff;
757 | font-weight: 400;
758 | }
759 | }
760 |
--------------------------------------------------------------------------------