Skip to content

Commit

Permalink
- table transition delays
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOcelot committed Sep 3, 2024
1 parent c12b554 commit b04422b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion html/example1.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

</head>

<body>
<body class="terminal">
<header>
<h1>Main Header: All HTML Elements</h1>
<nav>
Expand Down
9 changes: 8 additions & 1 deletion src/forms/tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@


table {
opacity: 0.8;
opacity: 0.5;
border: 2px solid colors.$color-green-one;
border-collapse: collapse;
box-shadow: 0px 0px 4px 2px rgba(0, 255, 0, 0.2);
transition: all 0.4s;
transition-delay: .2s;

thead th {
padding: 0;
Expand Down Expand Up @@ -50,6 +52,11 @@ table {
}


&:hover{
opacity: .8;
transition: all 0.2s;
transition-delay: .1s;
}

&.xeno-table {
width: 100%;
Expand Down

0 comments on commit b04422b

Please sign in to comment.