<!-- โญ๏ธ external module script -->
<script type="module" src="script.js"></script>
/* centered element */
.centered-element {
margin: 0;
/* โญ๏ธ child ่ท้จ parent ็ๅๆจ็ณป */
position: absolute;
/* โญ๏ธ ๅ็ดๆฐดๅนณ็ฝฎไธญ */
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* โญ๏ธ inset shadow */
box-shadow: 2px 2px 5px 0px #404040 inset;
:root {
font-size: calc(1rem + 0.5vw); /* โญ๏ธ ๅญ้ซ้จ่ขๅน่ฎๅคง */
}
/* reset */
* {
padding: 0;
margin: 0;
}
/* :root = html (with higher specificity) */
:root {
box-sizing: border-box;
}
/* "*" doesn't include pseudo-elements */
*, ::before, ::after {
/* box-sizing isnโt normally an inherited property, */
/* use `inherit` to force it. */
box-sizing: inherit;
}
/* โญ๏ธ import Font Awesome */
@import url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.3/css/all.min.css");
/* -- custom styling for all icons -- */
.fas, .fab {
border: 1px solid black;
font-size: 48px;
background-color: white;
color: black;
}
/* -- custom styling for specific icons -- */
.fa-facebook {
color: rgb(59, 91, 152);
}
SVG shapes, backgrounds, patterns
โฏ ยซยป
โญโโโญ๏ธโโโฎโโ// โฎ
โฐโโโญ๏ธโโโฏโโ// โญ๏ธ
โโโโโโ // โฏ
โโโโโโโโ
โ text โ
โโโโโโโโ
root
โ index.html
โ style.css
โ calc-app.js
โ calc-app-styles.css
โ Calculator.js
root
โ index.html
โ style.css
โ calc-app โโโฌ calc-app.js
โ โ calc-app-styles.css
โ โ Calculator.js
โ calc-app โโโฌ calc-app.js
โ calc-app-styles.css
โ Calculator.js
root
โ index.html
โ style.css
โ calc-app.js
โ calc-app-styles.css
โ Calculator.js
root
โ index.html
โ style.css
โ calc-app โโโฌ calc-app.js
โ calc-app-styles.css
โ Calculator.js