Skip to content

Commit f649fce

Browse files
authored
Add files via upload
1 parent d2ca6af commit f649fce

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1793
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
.container-lg{
2+
width: 100%;
3+
max-width: 90%;
4+
height: 100%;
5+
padding: 5px 10px;
6+
margin: 0 auto;
7+
8+
}
9+
10+
.align-content-center {
11+
height: 100%;
12+
align-content: center;
13+
align-items: center;
14+
}
15+
16+
17+
18+
button {
19+
cursor: pointer;
20+
min-width: 64px;
21+
padding: 5px 16px;
22+
border: none;
23+
border-radius: 12px;
24+
margin: 16px;
25+
outline: 0;
26+
font-size: 0.6rem;
27+
}
28+
29+
button.raised {
30+
background: $secondary-color;
31+
color: #FFF;
32+
box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2),
33+
0 2px 2px 0 rgba(0,0,0,0.14),
34+
0 1px 5px 0 rgba(0,0,0,0.12);
35+
transition: box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
36+
&:hover {
37+
opacity: 0.8;
38+
box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2),
39+
0 4px 5px 0 rgba(0,0,0,0.14),
40+
0 1px 10px 0 rgba(0,0,0,0.12);
41+
}
42+
&:focus {
43+
opacity: 0.7;
44+
}
45+
&:active {
46+
opacity: 1;
47+
box-shadow: 0 5px 5px -3px rgba(0,0,0,0.2),
48+
0 8px 10px 1px rgba(0,0,0,0.14),
49+
0 3px 14px 2px rgba(0,0,0,0.12);
50+
}
51+
}
52+
53+
54+
[ripple] {
55+
position: relative;
56+
overflow: hidden;
57+
}
58+
[ripple] .ripple--container {
59+
position: absolute;
60+
top: 0;
61+
right: 0;
62+
bottom: 0;
63+
left: 0;
64+
}
65+
[ripple] .ripple--container span {
66+
transform: scale(0);
67+
border-radius: 100%;
68+
position: absolute;
69+
opacity: 0.75;
70+
background-color: #fff;
71+
animation: ripple 1000ms;
72+
}
73+
@keyframes ripple {
74+
to {
75+
opacity: 0;
76+
transform: scale(2);
77+
}
78+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
@function strip-unit($value) {
2+
@return $value / ($value * 0 + 1);
3+
}
4+
5+
@mixin fluid-type($min-vw, $max-vw, $min-font-size, $max-font-size) {
6+
$u1: unit($min-vw);
7+
$u2: unit($max-vw);
8+
$u3: unit($min-font-size);
9+
$u4: unit($max-font-size);
10+
11+
@if $u1 == $u2 and $u1 == $u3 and $u1 == $u4 {
12+
& {
13+
14+
font-size: $min-font-size;
15+
@media screen and (min-width: $min-vw) {
16+
font-size: calc(#{$min-font-size} + #{strip-unit($max-font-size - $min-font-size)} * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)}));
17+
}
18+
19+
@media screen and (min-width: $max-vw) {
20+
font-size: $max-font-size;
21+
}
22+
}
23+
}
24+
}
25+
26+
$min_width: 320px;
27+
$max_width: 1000px;
28+
$min_font: 16px;
29+
$max_font: 22px;
30+
31+
html {
32+
@include fluid-type($min_width, $max_width, $min_font, $max_font);
33+
}
34+
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@font-face {
2+
src: url('/fonts/DroidKufi-Bold.ttf');
3+
font-family: 'DroidKufi-bold';
4+
font-weight: bold;
5+
}
6+
@font-face {
7+
src: url('/fonts/DroidKufi-Regular.ttf');
8+
font-family: 'DroidKufi';
9+
font-weight: normal;
10+
}
11+
12+
/* Colors Variables */
13+
$white-color: #fcfcfc;
14+
$dark-color:#1c1c1c;
15+
$primary-color:#a50a2e;
16+
$secondary-color:#ee9c47;
17+
$additional-color:blue;
18+
$nav-color: rgba($primary-color, 0.78);
19+
20+
/* Fonts Variables */
21+
$font-ar:'DroidKufi',Roboto;
22+
$font-ar-bold:'DroidKufi-bold',Roboto;
23+
24+
/* Calc */
25+
26+
$window-height: 100vh;
27+
$nav-height: 60px;
28+
$header-height: 75px;

0 commit comments

Comments
 (0)