Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions frontend/css/color.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
grey:#555; (font color)
red:#e74c3c,rgba(231, 76, 60,1.0),
orange:#e67e22,rgba(230, 126, 34,1.0)

Colors according to logo
orange : ##fdad15 rgb(253, 173, 21)
red : #b10e16, rgb(177, 14, 22)



Binary file added frontend/css/img/binary.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/css/img/robomaze.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/css/img/rocket.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions frontend/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,53 @@ body {
}
/* Events end */

/************************************
Base
**************************************/

*{
margin:0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

html,
body{
background-color: #fff;
color:#555;
font-family: 'Muli', sans-serif;
font-size: 16px;
text-rendering: optimizeLegibility;
font-weight: 300;
overflow-x: hidden;
}

::selection{
background-color: #b10e16;
color: #fdad15;
}

/***************************************
Headings
****************************************/
#content{
position: relative;
}

#content_head{
position: absolute;
left: 50%;
transform: translateX(-50%);
text-transform: uppercase;
font-size: 200px;
text-align: center;
font-weight: 600;
letter-spacing: 2px;
padding: 0px 120px;
display: inline-block;
margin: 60px auto;
color: #f4f4f4;
outline: 10px solid #f4f4f4;
outline-offset: 20px;
}
Loading