Skip to content

Commit

Permalink
latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jlbmagic committed Jan 11, 2024
1 parent 723549b commit fc03ee0
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
</head>
<body>
<h1>Alright. You're set.</h1>
<h2>Now build something amazing!</h2>
<h2 class="tintedBlackLeft">Now build something amazing!</h2>
<p>JS in FM is amazing</p>
<button type="button">Click Me!</button>

<script type="module">
Expand Down
Binary file modified jsDev.fmp12
Binary file not shown.
41 changes: 41 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,45 @@
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Arial', sans-serif;
font-size: 16px;
line-height: 1;
color: #000;
background-color: #fff;
margin: 10;
overflow: hidden;
}

p{
color:#282828;
font-size: 16px;
}


h1 {
background-color:#006690;
color: #fff;
font-size: 22px;
font-weight: 400;
line-height: 1.2;
margin: 0 0 10px;
}

.tintedBlackLeft {
background-color:#00000033;
color: #fff;
text-transform: uppercase;
font-size: 12px;
font-weight: 400;
line-height: 1.2;
padding:11px 11px 11px 0px;
}

button {
padding: 5px 9px 5px 9px;
border-radius: 3px;
font-size: 18px;
border: 1px solid #0091CE;
background-color: #0091CE;
color: #fff;
}

0 comments on commit fc03ee0

Please sign in to comment.