Skip to content

Commit

Permalink
Refactor ags CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
iigmir committed Oct 30, 2023
1 parent 8f328ca commit 0a8a79a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
39 changes: 23 additions & 16 deletions docs/css/tags.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,4 @@
.modal
{
display: none;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background-color: rgba(250, 250, 250, 0.4);
}
.show.modal
{
display: block;
}

/* Container part */
.narrow.container
{
padding: 2.0rem;
Expand All @@ -26,6 +11,7 @@
background-color: rgba(250, 250, 250, 1);
}

/* Button part */
.button
{
margin: 0.2rem;
Expand All @@ -40,3 +26,24 @@
{
background-color: #383b40;
}

/* Modal part */
.modal
{
display: none;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background-color: rgba(250, 250, 250, 0.4);
}
.modal
{
overflow-y: scroll;
}
.show.modal
{
display: block;
}
3 changes: 0 additions & 3 deletions docs/tags/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
<link rel="stylesheet" href="../css/index.css" />
<link rel="stylesheet" href="../css/tags.css" />
<link rel="shortcut icon" href="../favicon.ico" />
<style>
.modal { overflow-y: scroll; }
</style>
</head>
<body>
<div id="modal" class="modal">
Expand Down

0 comments on commit 0a8a79a

Please sign in to comment.