summaryrefslogtreecommitdiff
path: root/client/colors.less
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-28 14:30:22 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-28 14:30:22 +0300
commit871b89cdf5e0506842236b75947fd2df4747bb2f (patch)
treeea854fc4f90eea2fcd99798291e85b902a9da11a /client/colors.less
parent9f711cc5f814bd9d9c7b2f7bee91b46f2e55b60a (diff)
Smaller grid, spinner and final text
Diffstat (limited to 'client/colors.less')
-rw-r--r--client/colors.less42
1 files changed, 34 insertions, 8 deletions
diff --git a/client/colors.less b/client/colors.less
index db27c37..583ae7b 100644
--- a/client/colors.less
+++ b/client/colors.less
@@ -141,14 +141,41 @@ body {
}
}
}
+
h2 {
margin-top: 0px;
- margin-bottom: 90px;
+ margin-bottom: 20px;
color: #2636F9;
font-size: 2.3em;
font-weight: bold;
text-align: center;
+ div.sec {
+ color: #333;
+ }
+ }
+
+ svg.spinner {
+ display: block;
+ margin: 0 auto;
+ margin-top: 20px;
+ }
+
+ .rect {
+ fill: none;
+ stroke-width: 8px;
+ stroke: #2636F9;
+ stroke-dasharray: 40;
+ stroke-dashoffset: 50%;
+
+ animation: movedash 1.5s forwards 0s infinite;
+ }
+
+ @keyframes movedash {
+ to {
+ stroke-dashoffset: 250%;
+ }
}
+
div.photos {
display: -webkit-flex;
display: flex;
@@ -160,20 +187,19 @@ body {
margin: 0 auto;
div.photo {
margin: 3px 8px;
- width: 54px;
- height: 74px;
+ width: 72px;
+ height: 92px;
div.title {
color: #333;
- font-size: 0.7em;
text-align: center;
}
img {
- height: 54px;
- width: 54px;
+ height: 72px;
+ width: 72px;
}
canvas {
- width: 54px;
- height: 54px;
+ width: 72px;
+ height: 72px;
}
}
}