aboutsummaryrefslogtreecommitdiff
path: root/style/_random-project.scss
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-07-14 20:45:25 +0200
committerNoah Loomans <noahloomans@gmail.com>2017-07-14 20:45:25 +0200
commit13ddaef4689ce7ff315113e17e6ab49727ca7e88 (patch)
treeaf050c3f9c8d03135affaba446f64b878665d4e7 /style/_random-project.scss
parent6b92ee4dd90c0fe900c5fd58f2f073b989684efb (diff)
Add random project layout
Diffstat (limited to 'style/_random-project.scss')
-rw-r--r--style/_random-project.scss62
1 files changed, 62 insertions, 0 deletions
diff --git a/style/_random-project.scss b/style/_random-project.scss
new file mode 100644
index 0000000..3ddcf04
--- /dev/null
+++ b/style/_random-project.scss
@@ -0,0 +1,62 @@
+body.random-project {
+ margin: 0;
+}
+
+.random-project__header {
+ display: flex;
+ align-items: center;
+ padding: 16px;
+ box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
+
+ .logo img {
+ width: 80px;
+ height: 80px;
+ border-radius: 50%;
+ margin-left: 32px;
+ }
+
+ .text {
+ margin-left: 32px;
+ font-size: 2em;
+ }
+
+ a {
+ margin-right: 32px;
+ border: 1px #1a0dab solid;
+ border-radius: 4px;
+ padding: 16px 32px;
+ }
+}
+
+@media screen and (max-width: 768px) {
+ .random-project__header {
+ .logo img {
+ width: 60px;
+ height: 60px;
+ }
+
+ .text {
+ font-size: 1.5em;
+ }
+ }
+}
+
+@media screen and (max-width: 625px) {
+ .random-project__header {
+ .text {
+ display: none;
+ }
+ }
+}
+
+@media screen and (max-width: 400px) {
+ .random-project__header {
+ .logo, .text, .grow {
+ display: none;
+ }
+
+ a {
+ margin: 0 auto;
+ }
+ }
+}