aboutsummaryrefslogtreecommitdiff
path: root/style/_projects.scss
diff options
context:
space:
mode:
Diffstat (limited to 'style/_projects.scss')
-rw-r--r--style/_projects.scss27
1 files changed, 27 insertions, 0 deletions
diff --git a/style/_projects.scss b/style/_projects.scss
new file mode 100644
index 0000000..fa0ba51
--- /dev/null
+++ b/style/_projects.scss
@@ -0,0 +1,27 @@
+.projects {
+ display: flex;
+ .project {
+ padding: 8px;
+ color: black;
+ text-decoration: none;
+ background-color: #ececec;
+ margin: 8px;
+ outline: none;
+ border-radius: 2px;
+ box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
+ transition: all 0.3s cubic-bezier(.25,.8,.25,1);
+
+ &:hover, &:focus {
+ box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
+ }
+
+ img {
+ width: 100%;
+ }
+
+ header {
+ padding: 8px;
+ font-style: italic;
+ }
+ }
+}