mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
moved shared styles out ot assets
This commit is contained in:
90
assets/shared.css
Normal file
90
assets/shared.css
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
html {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
*,
|
||||||
|
*:before,
|
||||||
|
*:after {
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
align-items: center;
|
||||||
|
background-color: #f3f2f1;
|
||||||
|
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjxzdmcgIHdpZHRoPSI2MDAiICBoZWlnaHQ9IjYwMCIgIHZpZXdCb3g9IjAgMCA2MDAgNjAwIiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMwMCwzMDApIj4gICAgPHBhdGggZD0iTTEyMi42LC0xMTQuOEMxNzAuMywtNzUsMjI4LjEsLTM3LjUsMjM0LjQsNi4yQzI0MC42LDUwLDE5NS4zLDk5LjksMTQ3LjYsMTI5LjZDOTkuOSwxNTkuMyw1MCwxNjguNiw0LjcsMTYzLjlDLTQwLjUsMTU5LjIsLTgxLjEsMTQwLjQsLTExNS43LDExMC43Qy0xNTAuNCw4MS4xLC0xNzkuMiw0MC41LC0xOTMuOCwtMTQuNkMtMjA4LjQsLTY5LjgsLTIwOC45LC0xMzkuNSwtMTc0LjIsLTE3OS40Qy0xMzkuNSwtMjE5LjIsLTY5LjgsLTIyOS4xLC0xNi4xLC0yMTNDMzcuNSwtMTk2LjgsNzUsLTE1NC42LDEyMi42LC0xMTQuOFoiIGZpbGw9IiMzZDk3ZTMiIC8+ICA8L2c+PC9zdmc+);
|
||||||
|
background-attachment: fixed;
|
||||||
|
background-position: 50% 50%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 900px 740px;
|
||||||
|
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tiles {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
width: 800px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile {
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
||||||
|
margin: 0 12px 12px 0;
|
||||||
|
opacity: 0.96;
|
||||||
|
transition: all 0.15s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile:not(.Tile--intro):hover {
|
||||||
|
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile-link {
|
||||||
|
align-items: center;
|
||||||
|
color: #323130;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 148px;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
width: 148px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile-link i {
|
||||||
|
font-size: 32px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
color: #605e5c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile--intro {
|
||||||
|
max-width: 468px;
|
||||||
|
padding: 20px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile--intro h1 {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 300;
|
||||||
|
margin: 8px 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile--intro p {
|
||||||
|
font-size: 14px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Tile--intro a,
|
||||||
|
.Tile--intro a:visited {
|
||||||
|
color: #0078d4;
|
||||||
|
}
|
||||||
93
index.html
93
index.html
@@ -3,98 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.6.1/css/fabric.min.css" />
|
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.6.1/css/fabric.min.css" />
|
||||||
<style>
|
<link rel="stylesheet" href="./assets/shared.css" />
|
||||||
html {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
*,
|
|
||||||
*:before,
|
|
||||||
*:after {
|
|
||||||
box-sizing: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
align-items: center;
|
|
||||||
background-color: #f3f2f1;
|
|
||||||
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjxzdmcgIHdpZHRoPSI2MDAiICBoZWlnaHQ9IjYwMCIgIHZpZXdCb3g9IjAgMCA2MDAgNjAwIiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMwMCwzMDApIj4gICAgPHBhdGggZD0iTTEyMi42LC0xMTQuOEMxNzAuMywtNzUsMjI4LjEsLTM3LjUsMjM0LjQsNi4yQzI0MC42LDUwLDE5NS4zLDk5LjksMTQ3LjYsMTI5LjZDOTkuOSwxNTkuMyw1MCwxNjguNiw0LjcsMTYzLjlDLTQwLjUsMTU5LjIsLTgxLjEsMTQwLjQsLTExNS43LDExMC43Qy0xNTAuNCw4MS4xLC0xNzkuMiw0MC41LC0xOTMuOCwtMTQuNkMtMjA4LjQsLTY5LjgsLTIwOC45LC0xMzkuNSwtMTc0LjIsLTE3OS40Qy0xMzkuNSwtMjE5LjIsLTY5LjgsLTIyOS4xLC0xNi4xLC0yMTNDMzcuNSwtMTk2LjgsNzUsLTE1NC42LDEyMi42LC0xMTQuOFoiIGZpbGw9IiMzZDk3ZTMiIC8+ICA8L2c+PC9zdmc+);
|
|
||||||
background-attachment: fixed;
|
|
||||||
background-position: 50% 50%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 900px 740px;
|
|
||||||
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tiles {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
list-style-type: none;
|
|
||||||
margin: 0;
|
|
||||||
width: 800px;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile {
|
|
||||||
background-color: white;
|
|
||||||
border-radius: 2px;
|
|
||||||
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
||||||
margin: 0 12px 12px 0;
|
|
||||||
opacity: 0.96;
|
|
||||||
transition: all 0.15s linear;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile:not(.Tile--intro):hover {
|
|
||||||
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile-link {
|
|
||||||
align-items: center;
|
|
||||||
color: #323130;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
height: 148px;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 20px;
|
|
||||||
text-decoration: none;
|
|
||||||
width: 148px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile-link i {
|
|
||||||
font-size: 32px;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
color: #605e5c;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile--intro {
|
|
||||||
max-width: 468px;
|
|
||||||
padding: 20px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile--intro h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: 300;
|
|
||||||
margin: 8px 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile--intro p {
|
|
||||||
font-size: 14px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.Tile--intro a,
|
|
||||||
.Tile--intro a:visited {
|
|
||||||
color: #0078d4;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body class="ms-Fabric">
|
<body class="ms-Fabric">
|
||||||
<div class="Container">
|
<div class="Container">
|
||||||
|
|||||||
@@ -2,12 +2,21 @@
|
|||||||
|
|
||||||
/* Targeting an HTML tag */
|
/* Targeting an HTML tag */
|
||||||
h1 {
|
h1 {
|
||||||
|
/* Color name */
|
||||||
color: black;
|
color: black;
|
||||||
background: #ddd;
|
|
||||||
border: 1px solid #ababab;
|
/* 6 digit hex */
|
||||||
|
background: #ababab;
|
||||||
|
|
||||||
|
/* Margin: property for each side */
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
|
||||||
|
/* Shorthand: Padding applies to all sides */
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
||||||
|
/* 3 digit hex and border shorthand */
|
||||||
|
border: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Overriding inherited styles */
|
/* Overriding inherited styles */
|
||||||
@@ -27,11 +36,17 @@ span {
|
|||||||
|
|
||||||
/* Direct decendant selector */
|
/* Direct decendant selector */
|
||||||
.tiles > div {
|
.tiles > div {
|
||||||
|
/* rgb colors */
|
||||||
background: rgb(10, 10, 10);
|
background: rgb(10, 10, 10);
|
||||||
color: white;
|
color: white;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
|
/* Longhand goes clockwise from top
|
||||||
|
10px - all
|
||||||
|
10px 20px - top/bottom left/right
|
||||||
|
10px 20px 15px - top left/right bottom
|
||||||
|
*/
|
||||||
padding: 10px 20px 15px;
|
padding: 10px 20px 15px;
|
||||||
margin-right: 20px;
|
margin: 10px 20px 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Qualified selector */
|
/* Qualified selector */
|
||||||
@@ -51,18 +66,20 @@ a:hover {
|
|||||||
|
|
||||||
/* Sibling selectors */
|
/* Sibling selectors */
|
||||||
a ~ a {
|
a ~ a {
|
||||||
|
/* Changing elements from inline to block */
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Positional Pseudo Selectors */
|
/* Positional Pseudo Selectors */
|
||||||
.tiles > div:last-child {
|
.tiles > div:last-child {
|
||||||
|
/* overrides margin-right but leaves other margins alone */
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ID and selector lists */
|
/* ID selector */
|
||||||
#contact-form label,
|
#contact-form {
|
||||||
#contact-form input {
|
display: flex;
|
||||||
display: block;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Attribute selector */
|
/* Attribute selector */
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>Intro to HTML</title>
|
<title>Intro to HTML</title>
|
||||||
<link rel="stylesheet" href="./style.css" />
|
<link rel="stylesheet" href="./style.css" />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
a {
|
a {
|
||||||
color: #333333;
|
color: #333333;
|
||||||
@@ -10,8 +11,6 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element">HTML Element Reference</a>
|
|
||||||
|
|
||||||
<h2><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element#Document_metadata">Document Meta Data</a></h2>
|
<h2><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element#Document_metadata">Document Meta Data</a></h2>
|
||||||
<p>head, title, link, style</p>
|
<p>head, title, link, style</p>
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,15 @@
|
|||||||
<a href="./html-demo.html">HTML Demo</a><br />
|
<html>
|
||||||
<a href="./css-demo.html">CSS Demo</a>
|
<head>
|
||||||
|
<link rel="stylesheet" href="../assets/shared.css" />
|
||||||
|
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.6.1/css/fabric.min.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="ms-Fabric">
|
||||||
|
<div class="Container">
|
||||||
|
<ul class="Tiles">
|
||||||
|
<li class="Tile"><a href="./html-demo.html" class="Tile-link">HTML Demo</a></li>
|
||||||
|
<li class="Tile"><a href="./css-demo.html" class="Tile-link">CSS Demo</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user