This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* workshop: sudoku | |
*/ | |
table | |
{ | |
border-collapse: collapse; | |
margin: 4em auto; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* workhop: form | |
*/ | |
* | |
{ | |
box-sizing: border-box; | |
} | |
html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
* | |
{ | |
box-sizing: border-box; | |
} | |
form |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* workshop: udhr | |
*/ | |
html | |
{ | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
line-height: 1.5em; | |
background: hsl(200, 10%, 60%); | |
color: #333333; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* progress fallback pseudo-element | |
*/ | |
progress::after | |
{ | |
content: attr(value); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* heading decorated | |
*/ | |
html | |
{ | |
height: 100%; | |
background: linear-gradient( | |
to right bottom, | |
yellow, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* heading decorated | |
*/ | |
h1 | |
{ | |
font-size: 1.25em; /* use relative unit */ | |
text-align: center; | |
background: | |
linear-gradient( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* heading decorated | |
*/ | |
h1 | |
{ | |
font-size: 1.25em; /* use relative unit */ | |
text-align: center; | |
position: relative; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* heading decorated | |
*/ | |
h1 | |
{ | |
font-size: 1.25em; /* use relative unit */ | |
text-align: center; | |
background-image: linear-gradient( | |
to right, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* heading underlined | |
*/ | |
h1 | |
{ | |
font-size: 1.25em; /* use relative unit */ | |
text-align: center; | |
text-decoration-line: line-through; | |
text-decoration-skip: box-decoration; |