Bootcamp/Levels
(Undo revision 19010 by Edgar (talk))
Tag: Undo
No edit summary
Tag: 2017 source edit
Line 1: Line 1:
<html>
<html>
     <style>
     <style>
 
        body {
            margin: 0;
            padding: 0;
            font-family: 'Outfit', sans-serif;
        }
         .bootcamp-container {
         .bootcamp-container {
             width: 1125px;
             width: 100%;
             height: 1066px;
            max-width: 1125px;
             height: auto;
             position: relative;
             position: relative;
             margin: auto;
             margin: auto;
             transform: scale(0.9);
             padding: 10px;
            box-sizing: border-box;
             transform-origin: top center;
             transform-origin: top center;
         }
         }
Line 13: Line 19:
             width: 100%;
             width: 100%;
             height: 70px;
             height: 70px;
            position: absolute;
            top: 50px;
             background: #E2F5FA;
             background: #E2F5FA;
             display: flex;
             display: flex;
             align-items: center;
             align-items: center;
             justify-content: center;
             justify-content: center;
            margin-top: 20px;
         }
         }
         .header-text {
         .header-text {
Line 25: Line 30:
             font-weight: 600;
             font-weight: 600;
             text-transform: uppercase;
             text-transform: uppercase;
            text-align: center;
         }
         }
         .orange-text {
         .orange-text {
Line 30: Line 36:
         }
         }
         .section {
         .section {
            position: absolute;
             border-radius: 20px;
             border-radius: 20px;
             padding: 20px;
             padding: 20px;
Line 36: Line 41:
             cursor: pointer;
             cursor: pointer;
             transition: transform 0.3s ease;
             transition: transform 0.3s ease;
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
         }
         }
         .section:hover {
         .section:hover {
Line 41: Line 50:
         }
         }
         .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;
         }
         }
         .section-title {
         .section-title {
             font-size: 28px;
             font-size: 24px;
             font-weight: 700;
             font-weight: 700;
             margin-bottom: 10px;
             margin-bottom: 10px;
            text-align: center;
         }
         }
         .section-content {
         .section-content {
             font-size: 24px;
             font-size: 20px;
             font-weight: 400;
             font-weight: 400;
            text-align: center;
         }
         }
         .icon-placeholder {
         .icon-placeholder {
            position: absolute;
            background: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg') no-repeat;
             background-size: contain;
             background-size: contain;
            background-repeat: no-repeat;
            margin: 20px 0;
            width: 80px;
            height: 100px;
            display: block;
         }
         }
         .icon-1 {
         .icon-1 {
             width: 156px;
             background-image: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg');
            height: 287px;
            left: 99px;
            top: 122px;
         }
         }
         .icon-2 {
         .icon-2 {
             width: 274px;
             background-image: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg');
            height: 300px;
            left: 828px;
            top: 395px;
         }
         }
         .icon-3 {
         .icon-3 {
             width: 269px;
             background-image: url('https://newwikicopy.mdriven.net/images/0/0e/MDrivenBootcamp_1.svg');
             height: 376px;
        }
             left: 0;
       
             top: 690px;
        /* Media queries for mobile responsiveness */
        @media screen and (max-width: 768px) {
            .header-text {
                font-size: 22px;
             }
            .section-title {
                font-size: 20px;
             }
            .section-content {
                font-size: 16px;
             }
            .icon-placeholder {
                width: 50px;
                height: 70px;
            }
         }
         }
     </style>
     </style>
</head>
<body>
     <div class="bootcamp-container">
     <div class="bootcamp-container">
         <div class="header">
         <div class="header">
Line 103: Line 111:
             </div>
             </div>
         </div>
         </div>
 
        <div class="section beginner" onclick="choosePath('beginner')">
<div class="section beginner" onclick="choosePath('beginner')">
            <div class="icon-placeholder icon-1"></div>
             <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>
 
        <div class="section intermediate" onclick="choosePath('intermediate')">
<div class="section intermediate" onclick="choosePath('intermediate')">
            <div class="icon-placeholder icon-2"></div>
             <div class="section-title">INTERMEDIATE</div>
             <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 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>
 
        <div class="section advanced" onclick="choosePath('advanced')">
<div class="section advanced" onclick="choosePath('advanced')">
            <div class="icon-placeholder icon-3"></div>
             <div class="section-title">ADVANCED</div>
             <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 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 class="icon-placeholder icon-1"></div>
        <div class="icon-placeholder icon-2"></div>
        <div class="icon-placeholder icon-3"></div>
     </div>
     </div>
</body>
</body>
</html>
</html>

Revision as of 20:34, 28 July 2024

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.

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