Bootcamp/Levels
No edit summary
Tag: 2017 source edit
No edit summary
Tags: Reverted 2017 source edit
Line 1: Line 1:
<html>
<style>
    <style>
        body, html {
 
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
        }
         .bootcamp-container {
         .bootcamp-container {
             width: 1125px;
             width: 100%;
             height: 1066px;
             max-width: 1125px;
            position: relative;
             margin: auto;
             margin: auto;
             transform: scale(0.9);
             padding: 10px;
             transform-origin: top center;
             box-sizing: border-box;
         }
         }
         .header {
         .header {
             width: 100%;
             width: 100%;
             height: 70px;
             height: 70px;
             position: absolute;
             margin: 10px 0;
            top: 50px;
             background: #E2F5FA;
             background: #E2F5FA;
             display: flex;
             display: flex;
Line 28: Line 30:
         .orange-text {
         .orange-text {
             color: #FFAE6D;
             color: #FFAE6D;
        }
        .sections {
            display: flex;
            flex-direction: column;
            gap: 20px;
         }
         }
         .section {
         .section {
             position: absolute;
             width: 100%;
             border-radius: 20px;
             border-radius: 20px;
             padding: 20px;
             padding: 20px;
Line 36: Line 43:
             cursor: pointer;
             cursor: pointer;
             transition: transform 0.3s ease;
             transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
         }
         }
         .section:hover {
         .section:hover {
Line 41: Line 51:
         }
         }
         .beginner {
         .beginner {
            width: 862px;
            height: 238px;
            left: 296px;
            top: 171px;
             background: rgba(255, 218, 187, 0.60);
             background: rgba(255, 218, 187, 0.60);
         }
         }
         .intermediate {
         .intermediate {
            width: 828px;
            height: 238px;
            left: -23px;
            top: 457px;
             background: rgba(217, 217, 217, 0.45);
             background: rgba(217, 217, 217, 0.45);
         }
         }
         .advanced {
         .advanced {
            width: 862px;
            height: 238px;
            left: 296px;
            top: 738px;
             background: #112B3C;
             background: #112B3C;
             color: white;
             color: white;
Line 72: Line 70:
         }
         }
         .icon-placeholder {
         .icon-placeholder {
            position: absolute;
             background: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg') no-repeat;
             background: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg') no-repeat;
             background-size: contain;
             background-size: contain;
Line 79: Line 76:
             width: 156px;
             width: 156px;
             height: 287px;
             height: 287px;
            position: absolute;
             left: 99px;
             left: 99px;
             top: 122px;
             top: 122px;
Line 85: Line 83:
             width: 274px;
             width: 274px;
             height: 300px;
             height: 300px;
             left: 828px;
             position: absolute;
            right: 20px;
             top: 395px;
             top: 395px;
         }
         }
Line 91: Line 90:
             width: 269px;
             width: 269px;
             height: 376px;
             height: 376px;
            position: absolute;
             left: 0;
             left: 0;
             top: 690px;
             top: 690px;
        }
@media (max-width: 768px) {
            .sections {
                gap: 10px;
            }
            .section-title, .section-content {
                font-size: 18px;
            }
         }
         }
     </style>
     </style>
</head>
<body>
     <div class="bootcamp-container">
     <div class="bootcamp-container">
         <div class="header">
         <div class="header">
Line 103: Line 110:
             </div>
             </div>
         </div>
         </div>
 
        <div class="sections">
<div class="section beginner" onclick="choosePath('beginner')">
            <div class="section beginner" onclick="choosePath('beginner')">
            <div class="section-title">BEGINNER</div>
                <div class="section-title">BEGINNER</div>
            <div class="section-content">You are brand new to MDriven modeling and tools and you've got a lot of questions. This is the place to start - right from the basics!</div>
                <div class="section-content">You are brand new to MDriven modeling and tools and you've got a lot of questions. This is the place to start - right from the basics!</div>
            </div>
            <div class="section intermediate" onclick="choosePath('intermediate')">
                <div class="section-title">INTERMEDIATE</div>
                <div class="section-content">You have some understanding of models but you need to brush up on what you know and learn what else is new. Join the trail from here!</div>
            </div>
            <div class="section advanced" onclick="choosePath('advanced')">
                <div class="section-title">ADVANCED</div>
                <div class="section-content">You are very familiar with modeling and now you just want to understand how MDriven does it. Dive right in with the more advanced concepts behind the MDriven tools.</div>
            </div>
         </div>
         </div>
 
         <div class="icon-placeholder icon-1"></div>
<div class="section intermediate" onclick="choosePath('intermediate')">
            <div class="section-title">INTERMEDIATE</div>
            <div class="section-content">You have some understanding of models but you need to brush up on what you know and learn what else is new. Join the trail from here!</div>
         </div>
 
<div class="section advanced" onclick="choosePath('advanced')">
            <div class="section-title">ADVANCED</div>
            <div class="section-content">You are very familiar with modeling and now you just want to understand how MDriven does it. Dive right in with the more advanced concepts behind the MDriven tools.</div>
        </div>
 
<div class="icon-placeholder icon-1"></div>
         <div class="icon-placeholder icon-2"></div>
         <div class="icon-placeholder icon-2"></div>
         <div class="icon-placeholder icon-3"></div>
         <div class="icon-placeholder icon-3"></div>
     </div>
     </div>
</body>
</body>
</html>
</html>

Revision as of 20:25, 28 July 2024

<style>

       body, html {
           margin: 0;
           padding: 0;
           width: 100%;
           height: 100%;
       }
       .bootcamp-container {
           width: 100%;
           max-width: 1125px;
           margin: auto;
           padding: 10px;
           box-sizing: border-box;
       }
       .header {
           width: 100%;
           height: 70px;
           margin: 10px 0;
           background: #E2F5FA;
           display: flex;
           align-items: center;
           justify-content: center;
       }
       .header-text {
           font-family: 'Outfit', sans-serif;
           font-size: 28px;
           font-weight: 600;
           text-transform: uppercase;
       }
       .orange-text {
           color: #FFAE6D;
       }
       .sections {
           display: flex;
           flex-direction: column;
           gap: 20px;
       }
       .section {
           width: 100%;
           border-radius: 20px;
           padding: 20px;
           box-sizing: border-box;
           cursor: pointer;
           transition: transform 0.3s ease;
           display: flex;
           flex-direction: column;
           justify-content: center;
       }
       .section:hover {
           transform: scale(1.05);
       }
       .beginner {
           background: rgba(255, 218, 187, 0.60);
       }
       .intermediate {
           background: rgba(217, 217, 217, 0.45);
       }
       .advanced {
           background: #112B3C;
           color: white;
       }
       .section-title {
           font-size: 28px;
           font-weight: 700;
           margin-bottom: 10px;
       }
       .section-content {
           font-size: 24px;
           font-weight: 400;
       }
       .icon-placeholder {
           background: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg') no-repeat;
           background-size: contain;
       }
       .icon-1 {
           width: 156px;
           height: 287px;
           position: absolute;
           left: 99px;
           top: 122px;
       }
       .icon-2 {
           width: 274px;
           height: 300px;
           position: absolute;
           right: 20px;
           top: 395px;
       }
       .icon-3 {
           width: 269px;
           height: 376px;
           position: absolute;
           left: 0;
           top: 690px;
       }

@media (max-width: 768px) {

           .sections {
               gap: 10px;
           }
           .section-title, .section-content {
               font-size: 18px;
           }
       }
   </style>
               Choose the right option for you
BEGINNER
You are brand new to MDriven modeling and tools and you've got a lot of questions. This is the place to start - right from the basics!
INTERMEDIATE
You have some understanding of models but you need to brush up on what you know and learn what else is new. Join the trail from here!
ADVANCED
You are very familiar with modeling and now you just want to understand how MDriven does it. Dive right in with the more advanced concepts behind the MDriven tools.

</body> </html>

This page was edited 174 days ago on 08/10/2024. What links here