Skip to content

Commit bb070d8

Browse files
committed
Initial commit
0 parents  commit bb070d8

Some content is hidden

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

54 files changed

+12642
-0
lines changed

.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "devfestrv"
4+
}
5+
}

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

404.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Page Not Found</title>
7+
8+
<style media="screen">
9+
body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; }
10+
#message { background: white; max-width: 360px; margin: 100px auto 16px; padding: 32px 24px 16px; border-radius: 3px; }
11+
#message h3 { color: #888; font-weight: normal; font-size: 16px; margin: 16px 0 12px; }
12+
#message h2 { color: #ffa100; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
13+
#message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
14+
#message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
15+
#message a { display: block; text-align: center; background: #039be5; text-transform: uppercase; text-decoration: none; color: white; padding: 16px; border-radius: 4px; }
16+
#message, #message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
17+
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
18+
@media (max-width: 600px) {
19+
body, #message { margin-top: 0; background: white; box-shadow: none; }
20+
body { border-top: 16px solid #ffa100; }
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<div id="message">
26+
<h2>404</h2>
27+
<h1>Page Not Found</h1>
28+
<p>The specified file was not found on this website. Please check the URL for mistakes and try again.</p>
29+
<h3>Why am I seeing this?</h3>
30+
<p>This page was generated by the Firebase Command-Line Interface. To modify it, edit the <code>404.html</code> file in your project's configured <code>public</code> directory.</p>
31+
</div>
32+
</body>
33+
</html>

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Maye Edwin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# devfest

css/_functions.scss

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
// Request a theme color level
4+
@function color-level($color, $level: 0) {
5+
$color-base: if($level > 0, #000, #fff);
6+
$level: abs($level);
7+
8+
@return mix($color-base, $color, $level * $theme-color-interval);
9+
}
10+
11+
@function pale-color($value) {
12+
@return change-color($value, $saturation: 70, $lightness: 96);
13+
}

css/_theme.scss

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
2+
// Theme
3+
//
4+
// Change the default theme color, fonts, sizing, etc. by modifying
5+
// the following variables.
6+
7+
// Google fonts
8+
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Comfortaa:300,400,700');
9+
10+
11+
//----------------------------------------
12+
// Color system
13+
//----------------------------------------
14+
$blue: #50a1ff;
15+
$indigo: #6610f2;
16+
$purple: #7a54d8;
17+
$pink: #e83e8c;
18+
$red: #ff4954;
19+
$orange: #fb8302;
20+
$yellow: #f0cd18;
21+
$green: #78cf18;
22+
$teal: #20c997;
23+
$cyan: #17a2b8;
24+
25+
// Context colors
26+
$color-primary: $blue;
27+
$color-secondary: #e9ecf0;
28+
$color-success: $green;
29+
$color-info: $purple;
30+
$color-warning: $orange;
31+
$color-danger: $red;
32+
$color-light: #fafbfb;
33+
$color-dark: #191919;
34+
35+
36+
//----------------------------------------
37+
// Background colors
38+
//----------------------------------------
39+
$color-bg-lightest: #fcfdfe;
40+
$color-bg-lighter: #f9fafb;
41+
$color-bg-light: #f5f6f7;
42+
$color-bg-body: #ffffff;
43+
$color-bg-dark: #191919;
44+
$color-bg-gray: #fafbfd;
45+
46+
47+
//----------------------------------------
48+
// Text colors
49+
//----------------------------------------
50+
$color-text-darker: #464650;
51+
$color-text-dark: #555555;
52+
$color-text: #6f6e73;
53+
$color-text-light: #888888;
54+
$color-text-lighter: #b2b5b8;
55+
$color-text-lightest: #bebdc2;
56+
$color-text-secondary: #929daf;
57+
$color-text-disable: #a5b3c7;
58+
$color-text-placeholder: #c9ccce;
59+
$color-title: $color-text-darker;
60+
$color-subtitle: $color-text-lightest;
61+
62+
63+
////----------------------------------------
64+
// Fonts
65+
////----------------------------------------
66+
$font-family-base: "Open Sans", sans-serif;
67+
$font-family-title: "Comfortaa", sans-serif;
68+
69+
$font-size-base: 0.9375rem;
70+
71+
$font-weight-base: 300;
72+
$line-height-base: 1.9;
73+
74+
$h1-font-size: $font-size-base * 2.5;
75+
$h2-font-size: $font-size-base * 2;
76+
$h3-font-size: $font-size-base * 1.75;
77+
$h4-font-size: $font-size-base * 1.5;
78+
$h5-font-size: $font-size-base * 1.125;
79+
$h6-font-size: $font-size-base * 1;
80+
81+
$h1-font-weight: 300;
82+
$h2-font-weight: 300;
83+
$h3-font-weight: 300;
84+
$h4-font-weight: 300;
85+
$h5-font-weight: 400;
86+
$h6-font-weight: 400;
87+
88+
$display1-size: 5rem;
89+
$display2-size: 4rem;
90+
$display3-size: 3.25rem;
91+
$display4-size: 2.75rem;
92+
93+
$display1-weight: 300;
94+
$display2-weight: 300;
95+
$display3-weight: 300;
96+
$display4-weight: 300;
97+
98+
99+
//----------------------------------------
100+
// Navbar
101+
//----------------------------------------
102+
$navbar-min-height: 56px;
103+
$navbar-offset-top: 10px;
104+
105+
106+
//----------------------------------------
107+
// Other variables
108+
//----------------------------------------
109+
110+
// Feel free to override other variables here. You can see the list of
111+
// all the available variables in `/plugin/thesaas/scss/_variables.scss`

0 commit comments

Comments
 (0)