Compare commits
No commits in common. "a7f203dacd0ef8dee415078baf088524af576358" and "36d175db5e795463a9e5b71916682939f6fe16de" have entirely different histories.
a7f203dacd
...
36d175db5e
@ -1,68 +1,17 @@
|
|||||||
body {
|
.header {
|
||||||
margin: 0;
|
/* layout header */
|
||||||
padding: 0;
|
display: flex;
|
||||||
background: linear-gradient(135deg, #8a2be2 0%, #cc2b89 50%, #ff8a3d 100%);
|
justify-content: space-between;
|
||||||
background-attachment: fixed;
|
align-items: center;
|
||||||
background-size: cover;
|
padding: 6px 10px;
|
||||||
font-family: "Poppins", sans-serif;
|
width: 100%;
|
||||||
}
|
box-sizing: border-box;
|
||||||
|
|
||||||
.topbar {
|
/* glass style */
|
||||||
display: flex;
|
background: rgba(255, 255, 255, 0.25);
|
||||||
justify-content: space-between;
|
backdrop-filter: blur(14px);
|
||||||
align-items: center;
|
border-top: 2px solid rgba(255, 255, 255, 0.4);
|
||||||
padding: 6px 10px;
|
border-bottom: 2px solid rgba(255, 255, 255, 0.4);
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
|
/* nested element styling */
|
||||||
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);
|
|
||||||
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.back-btn {
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
font-size: 26px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #1a1a1a;
|
|
||||||
padding-left: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.right-info {
|
|
||||||
display: flex;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.pill {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 5px;
|
|
||||||
|
|
||||||
padding: 4px 10px;
|
|
||||||
border-radius: 20px;
|
|
||||||
|
|
||||||
background: rgba(173, 216, 255, 0.45);
|
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
|
|
||||||
border: 1.8px solid rgba(255, 255, 255, 0.8);
|
|
||||||
|
|
||||||
font-size: 16px;
|
|
||||||
color: #002a60;
|
|
||||||
|
|
||||||
box-shadow:
|
|
||||||
0 2px 4px rgba(0,0,0,0.15),
|
|
||||||
inset 0 0 4px rgba(255,255,255,0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
@ -4,28 +4,23 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Memory Card</title>
|
<title>Memory Card</title>
|
||||||
<link rel="stylesheet" href="gameboard.css">
|
<link rel="stylesheet" href="">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id = "container">
|
<div id = "container">
|
||||||
<header class="topbar">
|
<div class="header">
|
||||||
<button class="back-btn">←</button>
|
<div class="right-info">
|
||||||
|
|
||||||
<div class="right-info">
|
|
||||||
<div class="pill">
|
<div class="pill">
|
||||||
<span class="icon">⏱</span> 60s
|
<span class="icon">⏱</span> 60s
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="pill">
|
<div class="pill">
|
||||||
<span class="icon">⭐</span> 0
|
<span class="icon">⭐</span> 0
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="pill">
|
<div class="pill">
|
||||||
<span class="icon">🎯</span> 0
|
<span class="icon">🎯</span> 0
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user