Skip to content

Commit 364931e

Browse files
Maxwell CofieMaxwell Cofie
authored andcommitted
added website for framework
1 parent e81bef0 commit 364931e

27 files changed

+51113
-2
lines changed
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Krymoh Image](https://github.com/mcofie/krymoh/blob/master/image.png)
1+
![Krymoh Image](https://github.com/mcofie/krymoh/blob/master/krymoh_logo.png)
22

33
# Krymoh :wink:
44
Krymoh is a CSS framework that focuses on cinematic features in css that adds live to a web page AKA the CSS movie maker. This is written in [SASS](http://sass-lang.com/) therefore it is modular. The core idea here is to make this framework the go-to framework when a cinematic feel or property is required in a web page.

components/colors/colors.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ $yellow,$green,$ivory,$violet,$white,$navy,$orange,$black);
2929
@each $x in $colors{
3030
@each $i,$o in $x{
3131
.#{$i}{
32-
background-color: #{$o};
3332
color:#{$o};
33+
&-b{
34+
background-color: #{$o};
35+
}
3436
}
3537
}
3638
}

image.png

-5.31 KB
Binary file not shown.

krymoh.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

krymoh.min.css.map

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

krymoh_logo.png

77.2 KB
Loading

web/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/css/font-awesome.min.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/css/style.css

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
/**/
2+
@import "bootstrap.min.css";
3+
@import "font-awesome.min.css";
4+
5+
6+
/**/
7+
8+
@font-face{
9+
font-family: "santuary";
10+
src: url("../fonts/SP.ttf");
11+
}
12+
13+
@font-face{
14+
font-family: "raleway";
15+
src: url("../fonts/Raleway-Medium.ttf");
16+
}
17+
18+
*{
19+
font-family: "raleway";
20+
}
21+
22+
23+
h1{
24+
font-family: "santuary";
25+
font-size: 15em;
26+
color: #FFF;
27+
}
28+
29+
.btn-default{
30+
background-color: transparent;
31+
border:3px solid #FFF;
32+
color:#FFF;
33+
}
34+
35+
.btn-default:hover{
36+
background-color: #FFF;
37+
border:3px solid #FFF;
38+
color:#2d5a3d;
39+
}
40+
41+
#desc{
42+
font-size: 1.3em;
43+
color:#FFF;
44+
}
45+
46+
47+
main{
48+
width: 100%;
49+
margin-right: 15px;
50+
float: left;
51+
/*height: 700px;*/
52+
background-image: radial-gradient( circle at top left, #e2cb24,#d6f2ff 30%);
53+
}
54+
55+
.carousel-control.left,.carousel-control.right{
56+
background-image: none;
57+
}
58+
59+
.carousel-control{
60+
opacity: 1;
61+
color: #2d5a3d;
62+
padding: 120px 0;
63+
text-shadow: none;
64+
}
65+
66+
.carousel-control:focus, .carousel-control:hover{
67+
color:#CCC;
68+
}
69+
70+
71+
/**/
72+
.sky_liner{
73+
width: 100%;
74+
float: left;
75+
padding: 10px 0;
76+
position: absolute;
77+
z-index: 0;
78+
/*background-color: greenyellow;*/
79+
}
80+
81+
#sun_light{
82+
width: 170px;
83+
height: 170px;
84+
border-radius: 100%;
85+
float: left;
86+
87+
}
88+
89+
.view{
90+
width:100%;
91+
height: 600px;
92+
margin-top: 100px;
93+
position: absolute;
94+
z-index: 1;
95+
text-align: center;
96+
background-image: url("../img/view.svg");
97+
background-repeat: no-repeat;
98+
background-size: cover;
99+
}
100+
101+
.btn-group-lg>.btn, .btn-lg{
102+
padding: 20px 60px;
103+
margin: 10px;
104+
font-size: 1.7em;
105+
}
106+
107+
#content_wrapper{
108+
width: 100%;
109+
/*height: 700px;*/
110+
margin-top: 700px;
111+
background-color: #4a843d;
112+
float: left;
113+
}
114+
115+
.components_wrapper{
116+
width: 100%;
117+
margin: 30px 0;
118+
float:left;
119+
background-color: #FFF;
120+
}
121+
122+
footer{
123+
width: 100%;
124+
padding:150px 0;
125+
float: left;
126+
text-align: center;
127+
background:linear-gradient( #4a843d, #2d5a3d);
128+
}
129+
130+
.credit{
131+
color:#FFF;
132+
}
133+
134+
#ball{
135+
width:120px;
136+
height: 120px;
137+
border-radius: 100%;
138+
margin: auto;
139+
/*background-color: red;*/
140+
}
141+
142+
#ball > .fa{
143+
font-size: 8em;
144+
}
145+
146+
#object > .fa{
147+
font-size: 8em;
148+
}
149+
150+
#object{
151+
width:120px;
152+
height: 120px;
153+
margin: auto;
154+
cursor: pointer;
155+
}
156+
157+
158+
#ftr-img{
159+
width:100%;
160+
height:120px;
161+
margin: auto;
162+
text-align: center;
163+
/*float: left;*/
164+
}
165+
166+
167+
/***/
168+
.slate{
169+
width:100%;
170+
background-color:#FFF;
171+
padding: 70px 0;
172+
float: left;
173+
}
174+
175+
176+
177+
178+
@keyframes sunrise{
179+
from{
180+
transform:translateX(500px);
181+
opacity: 0;
182+
}
183+
to{
184+
transform: translate3d(-1200px,0px,0);
185+
opacity: 1;
186+
}
187+
}
188+
189+
@keyframes sunset{
190+
from{
191+
transform:translateX(0);
192+
opacity: 1;
193+
}
194+
to{
195+
transform: translate3d(1190px,160px,0);
196+
opacity: 0;
197+
}
198+
}
199+
200+
.sun_set{
201+
animation: sunset 20s linear 5s infinite alternate;
202+
background-image: url("../img/sun_set.svg");
203+
background-size: contain;
204+
}
205+
206+
.sun_rise{
207+
animation: sunrise 20s linear infinite;
208+
background-image: url("../img/sun_rise.svg");
209+
background-size: contain;
210+
}
211+
212+
213+

web/fonts/FontAwesome.otf

104 KB
Binary file not shown.

web/fonts/Raleway-Medium.ttf

126 KB
Binary file not shown.

web/fonts/SP.ttf

71.4 KB
Binary file not shown.

web/fonts/fontawesome-webfont.eot

67.3 KB
Binary file not shown.

web/fonts/fontawesome-webfont.svg

Lines changed: 640 additions & 0 deletions
Loading

web/fonts/fontawesome-webfont.ttf

135 KB
Binary file not shown.

web/fonts/fontawesome-webfont.woff

79.4 KB
Binary file not shown.

web/fonts/fontawesome-webfont.woff2

63 KB
Binary file not shown.

web/img/max.jpg

25.4 KB
Loading

web/img/sun.svg

Lines changed: 11547 additions & 0 deletions
Loading

web/img/sun_rise.svg

Lines changed: 24051 additions & 0 deletions
Loading

web/img/sun_set.svg

Lines changed: 11793 additions & 0 deletions
Loading

web/img/view.svg

Lines changed: 2640 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)