Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,[email protected],100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">

<h1>Pluridisciplinalité</h1>
<p class="description"> <strong>Cliquez sur les <span class="vert">points </span> pour les développer.</strong></p>
<div class="distribution-map">
   
    <img src="https://www.innodura.fr/wp-content/uploads/2022/07/module_multicompetences-min.png" alt="" />
    <button class="map-point" style="top:35%;left:48%">
        <div class="content">
            <div class="centered-y">
                <h2>Système de mesure</h2>
                <p>Innodura est spécialisée dans les bancs d'essais sous LabVIEW ainsi que dans la mesure physique et le traitement du signal. Nos compétences en développement de systèmes, en Métrologie et en Mécatronique permettent de concevoir des solutions de mesures multiphysiques, innovantes et communicantes. </p>
            </div>
        </div>
    </button>
    <button class="map-point" style="top:1%;left:24%">
        <div class="content">
            <div class="centered-y">
                <h2>LabVIEW</h2>
                <p> Des audits de code concernant des logiciels en quête d’améliorations ou de corrections sont proposés par l’équipe de développeurs LabVIEW.

Innodura propose à ses clients de renforcer leurs équipes de développement en mettant à disposition des ingénieurs expérimentés en développement LabVIEW.  
Cette mise à disposition ponctuelle d’un consultant sur site est encadrée par un Architecte LabVIEW depuis les locaux d’Innodura TB.

  </p>
            </div>
        </div>
    </button>
  
    <button class="map-point" style="top:22%;left:67%">
        <div class="content">
            <div class="centered-y">
                <h2>Vision et robotique</h2>
                <p>Innodura est experte dans les domaines de la vision et de la robotique. Fort des ses expériences avec le développement d'Innopick, Innoscan et InnoViA, la computer vision est au coeur de notre réflexion stratégique. Innodura oeuvre pour la transition numérique des processus et des entreprises.</p>
            </div>
        </div>
    </button>
</div>
              
            
!

CSS

              
                html {
  background: #1a1a1a;
  color: #e5e5e5;
  text-align: center;
  font-family: "Lato",sans-serif;
  
}

body {
  max-width: 100%;
  height:10vh;
  margin: 10px auto;
  padding: 0 100px;
  overflow-x: hidden;
  overflow-y:hidden;
}
.vert {
  color:#a3d272;
}

.description {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(229, 229, 229, 0.7);
}

div, img, footer {
  position: relative;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom:12pt;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 30pt;
  color: #006783;
  
}

h2 {
  font-size: 18pt;
   color: #1e1e24;
}

h3 {
  font-size: 18pt;
}

h4 {
  font-size: 16pt;
}

h5 {
  font-size: 14pt;
}

h6 {
  font-size: 12pt;
}

p {
  font-size: 11pt;
  margin-bottom: 12pt;
  text-align: center;
  color: #1e1e24;
}

strong {
  font-weight: 900;
  font-family: "Lato", sans-serif;
  color: #e5e5e5;
}

a {
  transition: color 0.25s ease-in-out;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #dff3fd;
}
a:visited {
  color: #dff3fd;
}
li.active a, a:hover, a:active {
  color: #e5e5e5;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered-y {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.distribution-map {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.distribution-map > img {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.distribution-map .map-point {
  cursor: pointer;
  outline: none;
  z-index: 0;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 4;
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  -o-transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  -webkit-transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out, z-index 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0.25s, 0.25s, 0.25s;
  transition: opacity 0.25s ease-in-out 0.25s, width 0.25s ease-in-out 0.25s, height 0.25s ease-in-out 0.25s, z-index 0.25s ease-in-out 0.25s;
  background: #fbfbff;
  border: 5px solid #a3d272;
}
.distribution-map .map-point .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  width: 90%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: overlay;
}
.distribution-map .map-point:active, .distribution-map .map-point:focus {
  margin: 0;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  width: 420px;
  height: 240px;
  color: #e5e5e5;
  z-index: 1;
  transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out;
}
.distribution-map .map-point:active .content, .distribution-map .map-point:focus .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0s, 0s;
  transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  overflow: hidden;
}
.distribution-map .map-point:active .content a:hover, .distribution-map .map-point:active .content a:active, .distribution-map .map-point:focus .content a:hover, .distribution-map .map-point:focus .content a:active {
  color: #006783;
}

              
            
!

JS

              
                
              
            
!
999px

Console