Bootcamp/Levels
(Created page with "<nowiki><html></nowiki>     <style>         body {             font-family: 'Inter', sans-serif;             margin: 0;             padding: 0;             width: 2251px;             height: 2133px;             position: relative;         }         .header {             width: 100%;             height: 140px;             position: absolute;             top: 99px;             ba...")
 
No edit summary
Tag: 2017 source edit
 
(43 intermediate revisions by the same user not shown)
Line 1: Line 1:
<nowiki><html></nowiki>
<html>
<style>
    body {
        margin: 0;
        padding: 0;
        font-family: 'Outfit', sans-serif;
    }
    .bootcamp-container {
        width: 100%;
        position: relative;
        margin: auto;
        padding: 10px;
        box-sizing: border-box;
    }
    .header {
        width: 100%;
        height: 70px;
        background: #E2F5FA;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .header-text {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }
    .orange-text {
        color: #FFAE6D;
    }
    .section-container {
        display: flex;
        align-items: center;
        margin: 20px 0;
        animation: fadeInUp 1s ease-in-out forwards;
    }
    .section {
        border-radius: 20px;
        padding: 50px;
        box-sizing: border-box;
        cursor: pointer;
        transition: transform 0.3s ease;
        flex: 1;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-decoration: none;
        color: inherit;
        text-align: left;
    }
    .section:hover {
        transform: scale(1.05);
    }
    .section:link,
    .section:visited,
    .section:hover,
    .section:active {
            text-decoration: none;
            color: inherit;
        }
    .beginner {
        background: rgba(255, 218, 187, 0.60);
    }
    .intermediate {
        background: rgba(217, 217, 217, 0.45);
    }
    .advanced {
        background: #112B3C;
        color: white !important;
    }
    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .section-content {
        font-size: 20px;
        font-weight: 400;
    }
    .icon-placeholder {
        width: 250px;
        height: auto;
        background-size: contain;
        background-repeat: no-repeat;
        margin: 0 20px;
        animation: fadeInScale 1s ease-in-out forwards;
    }


    <style>
  .mw-body-content {
  background-color:#E2F5FA;


        body {
}


            font-family: 'Inter', sans-serif;
.section-container:nth-child(2) {
    animation-delay: 0.2s;
}
.section-container:nth-child(3) {
    animation-delay: 0.4s;
}


            margin: 0;
/* 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: 100px;
            height: 100px;
            margin: 10px auto;
        }
        .section-container {
            flex-direction: column;
            align-items: center;
        }
        .section {
            width: 100%;
            margin: 10px 0;
            text-align: center;
        }
        .beginner, .advanced {
            margin: 0;
        }
        .intermediate {
            margin: 0;
        }
    }


            padding: 0;
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


            width: 2251px;
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


            height: 2133px;
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
</style>
<script>
        window.addEventListener('load', () => {
            document.querySelector('.header').classList.add('loaded');
            document.querySelectorAll('.section-container').forEach((element) => {
                element.classList.add('loaded');
            });
            document.querySelectorAll('.icon-placeholder').forEach((element) => {
                element.classList.add('loaded');
            });
        });
    </script>


            position: relative;
<div class="bootcamp-container">
    <div class="header">
        <div class="header-text">
            <span class="orange-text">Choose</span> the right option for you
        </div>
    </div>


        }
<div class="section-container">
      <img src="https://wiki.mdriven.net/images/6/6e/Person_beginner.png" alt="Beginner Icon" class="icon-placeholder">
        <a href="/index.php/Bootcamp/Beginner" class="section beginner">
            <div class="section-title">BEGINNER</div>
            <div class="section-content">You want to learn software modeling using the MDriven tools and you’ve got a lot of questions. This is the place to start - right from the basics!</div>
        </a>
    </div>


        .header {
<div class="section-container">
 
        <a href="/index.php/Bootcamp/Intermediate" class="section intermediate">
            width: 100%;
            <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>
            height: 140px;
        </a>
 
        <img src="https://wiki.mdriven.net/images/0/00/Person_intermediate.png" alt="Intermediate Icon" class="icon-placeholder">
            position: absolute;
    </div>
 
            top: 99px;
 
            background: #E2F5FA;
 
            display: flex;
 
            align-items: center;
 
            justify-content: center;
 
        }
 
        .header-text {
 
            font-family: 'Outfit', sans-serif;
 
            font-size: 55px;
 
            font-weight: 600;
 
            text-transform: uppercase;
 
        }
 
        .orange-text {
 
            color: #FFAE6D;
 
        }
 
        .section {
 
            width: 1725px;
 
            height: 477px;
 
            position: absolute;
 
            border-radius: 40px;
 
            padding: 20px;
 
            box-sizing: border-box;
 
        }
 
        .beginner {
 
            left: 592px;
 
            top: 342px;
 
            background: rgba(255, 218.31, 187, 0.60);
 
        }
 
        .intermediate {
 
            left: -47px;
 
            top: 914px;
 
            background: rgba(217, 217, 217, 0.45);
 
            width: 1657px;
 
        }
 
        .advanced {
 
            left: 592px;
 
            top: 1477px;
 
            background: #112B3C;
 
            color: white;
 
        }
 
        .section-title {
 
            font-size: 55px;
 
            font-weight: 700;
 
            margin-bottom: 20px;
 
        }
 
        .section-content {
 
            font-size: 48px;
 
            font-weight: 400;
 
        }
 
        .icon-placeholder {
 
            position: absolute;
 
            background: url('icon-placeholder.png') no-repeat center center;
 
            background-size: contain;
 
        }
 
        .icon-1 {
 
            width: 312px;
 
            height: 575px;
 
            left: 198px;
 
            top: 244px;
 
        }
 
        .icon-2 {
 
            width: 549px;
 
            height: 600px;
 
            left: 1657px;
 
            top: 791px;
 
        }
 
        .icon-3 {
 
            width: 538px;
 
            height: 753px;
 
            left: 0;
 
            top: 1380px;
 
        }
 
    </style>
 
</head>
 
<body>
 
    <nowiki><div class="header"></nowiki>
 
        <nowiki><div class="header-text"></nowiki>
 
            <nowiki><span class="orange-text">Choose</span></nowiki> the right option for you
 
        <nowiki></div></nowiki>
 
    <nowiki></div></nowiki>
 
<nowiki><div class="section beginner" onclick="choosePath('beginner')"></nowiki>
 
        <nowiki><div class="section-title">BEGINNER</div></nowiki>
 
        <nowiki><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></nowiki>
 
    <nowiki></div></nowiki>
 
<nowiki><div class="section intermediate" onclick="choosePath('intermediate')"></nowiki>
 
        <nowiki><div class="section-title">INTERMEDIATE</div></nowiki>
 
        <nowiki><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></nowiki>
 
    <nowiki></div></nowiki>
 
<nowiki><div class="section advanced" onclick="choosePath('advanced')"></nowiki>
 
        <nowiki><div class="section-title">ADVANCED</div></nowiki>
 
        <nowiki><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></nowiki>
 
    <nowiki></div></nowiki>
 
<nowiki><div class="icon-placeholder icon-1"></div></nowiki>
 
    <nowiki><div class="icon-placeholder icon-2"></div></nowiki>
 
    <nowiki><div class="icon-placeholder icon-3"></div></nowiki>


<div class="section-container">
        <img src="https://wiki.mdriven.net/images/6/66/Person_advanced.png" alt="Advanced Icon" class="icon-placeholder">
        <a href="/index.php/Bootcamp/Advanced" class="section 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>
        </a>
    </div>
</div>
</body>
</body>
 
</html>
<nowiki></html></nowiki>

Latest revision as of 23:34, 9 August 2024

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