diff options
author | Joris | 2019-05-16 09:40:02 +0200 |
---|---|---|
committer | Joris | 2019-05-16 09:40:02 +0200 |
commit | 7bf58894761742d4da8e6f52ce113ea7327e7114 (patch) | |
tree | 388785f65e258e956296977cff4bd1f7ac6e1526 /public | |
parent | f015a216f5ee1e335d5ae90dbc8f3efafdca6fec (diff) |
Bootstrap
Diffstat (limited to 'public')
-rw-r--r-- | public/images/ananta-pose.jpg | bin | 0 -> 21924 bytes | |||
-rw-r--r-- | public/images/crescent-moon.jpg | bin | 0 -> 20717 bytes | |||
-rw-r--r-- | public/images/downward-facing-dog.jpg | bin | 0 -> 71803 bytes | |||
-rw-r--r-- | public/images/downward-facing-tree.jpg | bin | 0 -> 686301 bytes | |||
-rw-r--r-- | public/images/half-moon.jpg | bin | 0 -> 93298 bytes | |||
-rw-r--r-- | public/images/shooting-bow.jpg | bin | 0 -> 467079 bytes | |||
-rw-r--r-- | public/index.html | 10 | ||||
-rw-r--r-- | public/main.css | 56 |
8 files changed, 66 insertions, 0 deletions
diff --git a/public/images/ananta-pose.jpg b/public/images/ananta-pose.jpg Binary files differnew file mode 100644 index 0000000..5896b7e --- /dev/null +++ b/public/images/ananta-pose.jpg diff --git a/public/images/crescent-moon.jpg b/public/images/crescent-moon.jpg Binary files differnew file mode 100644 index 0000000..e9528f7 --- /dev/null +++ b/public/images/crescent-moon.jpg diff --git a/public/images/downward-facing-dog.jpg b/public/images/downward-facing-dog.jpg Binary files differnew file mode 100644 index 0000000..9fdc74b --- /dev/null +++ b/public/images/downward-facing-dog.jpg diff --git a/public/images/downward-facing-tree.jpg b/public/images/downward-facing-tree.jpg Binary files differnew file mode 100644 index 0000000..3cd5aa7 --- /dev/null +++ b/public/images/downward-facing-tree.jpg diff --git a/public/images/half-moon.jpg b/public/images/half-moon.jpg Binary files differnew file mode 100644 index 0000000..b2d63ed --- /dev/null +++ b/public/images/half-moon.jpg diff --git a/public/images/shooting-bow.jpg b/public/images/shooting-bow.jpg Binary files differnew file mode 100644 index 0000000..13aad78 --- /dev/null +++ b/public/images/shooting-bow.jpg diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..cb2702a --- /dev/null +++ b/public/index.html @@ -0,0 +1,10 @@ +<html> + <head> + <title>Yoga</title> + <meta charset="utf-8"> + <link rel="stylesheet" href="main.css"> + </head> + <body> + <script src="main.js"></script> + </body> +</html> diff --git a/public/main.css b/public/main.css new file mode 100644 index 0000000..a2a4495 --- /dev/null +++ b/public/main.css @@ -0,0 +1,56 @@ +/* General */ + +body { + margin: 0; +} + +/* Header */ + +.header__link { + display: block; + text-decoration: none; + background-color: #333333; + color: white; + padding: 10px; + margin-bottom: 20px; + font-size: 22px; + font-weight: bold; +} + +/* Index */ + +.index__poses { + display: flex; + flex-wrap: wrap; + justify-content: space-around; +} + +.index__poseLink { + color: #333366; + padding: 20px; + transition: transform 0.1s ease-in; +} + +.index__poseLink:hover { + transform: scale(1.05); +} + +.index__poseName { + text-align: center; + font-size: 20px; + margin: 10px 0; +} + +.index__poseImageParent { + display: flex; + justify-content: center; + align-items: center; + width: 300px; + height: 300px; +} + +.index__poseImage { + max-width: 90%; + max-height: 90%; + border-radius: 3px; +} |