initial
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.pdf
|
23
aceofspades.html
Normal file
23
aceofspades.html
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>A title</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="card">
|
||||||
|
<div class="top">
|
||||||
|
<div>A</div>
|
||||||
|
<div>♠</div>
|
||||||
|
</div>
|
||||||
|
<div class="center">♠</div>
|
||||||
|
<div class="bottom">
|
||||||
|
<div>A</div>
|
||||||
|
<div>♠</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
13
progressbar.html
Normal file
13
progressbar.html
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>A title</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="progress"></div>
|
||||||
|
<div class="progress stage2"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
searchbar.html
Normal file
15
searchbar.html
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>A title</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="search-container">
|
||||||
|
<input type="search" class="search-bar" id="search-field" placeholder="Search..."/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
31
sixofclubs.html
Normal file
31
sixofclubs.html
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>A title</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link href="style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="card">
|
||||||
|
<div class="left">
|
||||||
|
<div>6</div>
|
||||||
|
<div>♣</div>
|
||||||
|
</div>
|
||||||
|
<div class="middle">
|
||||||
|
<div>♣</div>
|
||||||
|
<div>♣</div>
|
||||||
|
<div>♣</div>
|
||||||
|
<div>♣</div>
|
||||||
|
<div>♣</div>
|
||||||
|
<div>♣</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<div>6</div>
|
||||||
|
<div>♣</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
75
style.css
Normal file
75
style.css
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
.search-bar {
|
||||||
|
background-color: #669bbc;
|
||||||
|
width: 33%;
|
||||||
|
height: 3em;
|
||||||
|
border: 0.5em solid #780000;
|
||||||
|
border-radius: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-bar:focus {
|
||||||
|
width: 100%;
|
||||||
|
border-color: #003049;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-container {
|
||||||
|
padding: 32px 0px 0px 32px;
|
||||||
|
width: 640px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#target {
|
||||||
|
background-color: yellow;
|
||||||
|
border-radius: 64px;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border: 16px solid red;
|
||||||
|
outline: 16px solid deepskyblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress {
|
||||||
|
position: absolute;
|
||||||
|
background-color: gray;
|
||||||
|
border-radius: 32px;
|
||||||
|
width: 300px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stage0 {
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stage1 {
|
||||||
|
width: 100px;
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stage2 {
|
||||||
|
width: 200px;
|
||||||
|
background-color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stage3 {
|
||||||
|
width: 300px;
|
||||||
|
background-color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 12em;
|
||||||
|
height: 18em;
|
||||||
|
border: 1px solid black;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
.container>.card>.middle {
|
||||||
|
display: grid;
|
||||||
|
text-align: center;
|
||||||
|
grid-template-columns: repeat(2, 50% [col-start]);
|
||||||
|
font-size: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container>.card.>.left {
|
||||||
|
}
|
||||||
|
.container>.card.>.right {
|
||||||
|
text-align: center;
|
||||||
|
}
|
Reference in New Issue
Block a user