This commit is contained in:
Gavyn Ezell 2022-11-08 22:43:41 -08:00
parent 55f0f5d645
commit 9bbb2e48f7
2 changed files with 25 additions and 4 deletions

View File

@ -12,9 +12,9 @@
<!-- Main Stylesheets & Scripts -->
<link rel="stylesheet" href="static/ReviewCard.css" />
<link rel="stylesheet" href="static/reset.css" />
<script src="assets/scripts/main.js" type="module"></script>
<link rel="stylesheet" href="/static/ReviewCard.css" />
<link rel="stylesheet" href="/static/reset.css" />
<script src="/source/assets/scripts/main.js" type="module"></script>
</head>
<body>

View File

@ -47,7 +47,28 @@
row-gap: 10px;
width: 100%;
}
.tag {
background-color: grey;
border-radius: 7px;
color: white;
padding-right: 7px;
padding-left: 7px;
margin: 3px;
}
.tag::before {
display: inline-block;
content: 'x';
height: 15px;
width: 15px;
margin-right: 4px;
text-align: center;
color: white;
cursor: pointer;
}
.tag:hover::before{
color: red;
}
.danger {
background-color: rgb(254, 171, 171);
border-color: red;