Compare commits

..

2 Commits

2 changed files with 34 additions and 2 deletions

17
gameboard Normal file
View File

@ -0,0 +1,17 @@
.header {
/* layout header */
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 10px;
width: 100%;
box-sizing: border-box;
/* glass style */
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(14px);
border-top: 2px solid rgba(255, 255, 255, 0.4);
border-bottom: 2px solid rgba(255, 255, 255, 0.4);
/* nested element styling */
}

View File

@ -3,9 +3,24 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Memory Card</title>
<link rel="stylesheet" href="">
</head>
<body>
test
<div id = "container">
<div class="header">
<div class="right-info">
<div class="pill">
<span class="icon"></span> 60s
</div>
<div class="pill">
<span class="icon"></span> 0
</div>
<div class="pill">
<span class="icon">🎯</span> 0
</div>
</div>
</div>
</div>
</body>
</html>