Home page update and tests redirection
This commit is contained in:
parent
bafd7570dc
commit
2c444c31d0
@ -4,3 +4,5 @@ Color palette:
|
|||||||
#FFCF00 - Cyber Yellow
|
#FFCF00 - Cyber Yellow
|
||||||
#EE6123 - Orange Panteon
|
#EE6123 - Orange Panteon
|
||||||
#FA003F - Red Munsell
|
#FA003F - Red Munsell
|
||||||
|
|
||||||
|
#FF0B7E - Winter Sky
|
@ -5,7 +5,7 @@
|
|||||||
z-index: 1;
|
z-index: 1;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
background-color: #FA003F;
|
background-color: #FF0B7E;
|
||||||
overflow-x: :hidden;
|
overflow-x: :hidden;
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
@ -39,12 +39,58 @@
|
|||||||
|
|
||||||
.main {
|
.main {
|
||||||
margin-left: 160px;
|
margin-left: 160px;
|
||||||
padding: 0px 10px;
|
padding: 0px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.main h1 {
|
.main h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
padding-bottom: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestContainer {
|
||||||
|
border-radius: 25px;
|
||||||
|
border: 2px solid #FF0B7E;
|
||||||
|
padding: 20px;
|
||||||
|
width: 800px;
|
||||||
|
height: 225px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestName {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 20px;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestMeta {
|
||||||
|
font-size: 13px;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
color: #808080;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestContainer button {
|
||||||
|
height: 30px;
|
||||||
|
width: 150px;
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 17px;
|
||||||
|
background: #00916E;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 25px;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
transform: translate(200%,0%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestContainer a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestDesc{
|
||||||
|
padding-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainTestQuest {
|
||||||
}
|
}
|
||||||
|
|
||||||
.authContent {
|
.authContent {
|
||||||
@ -145,4 +191,4 @@ input[type=checkbox]{
|
|||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
background-color:#FA003F
|
background-color:#FF0B7E
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<meta name="description" content="{% block description %}{% endblock %}">
|
<meta name="description" content="{% block description %}{% endblock %}">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body style="background-color: #FA003F">
|
<body style="background-color: #FF0B7E">
|
||||||
<div class="titleBar">
|
<div class="titleBar">
|
||||||
SOITA
|
SOITA
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,15 +3,25 @@
|
|||||||
{% block title %}Home{% endblock %}
|
{% block title %}Home{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>Welcome in SOITA</h1>
|
<h1>Take some tests!</h1>
|
||||||
{% for test in tests %}
|
{% for test in tests %}
|
||||||
<p>
|
<div class="mainTestContainer">
|
||||||
<b>{{test.name}}</b>
|
<div class="mainTestName">
|
||||||
<br>
|
{{test.name}}
|
||||||
Passing score: {{test.passing_score}}
|
</div>
|
||||||
<br>
|
<div class="mainTestMeta">
|
||||||
Category: {{test.category.name}}
|
Category: {{test.category.name}}
|
||||||
</p>
|
</div>
|
||||||
|
<div class="mainTestDesc">
|
||||||
|
<!-- TODO 250 words limit-->
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus volutpat scelerisque tortor, id sodales leo finibus id. Vivamus id viverra nunc, ac faucibus metus. Nulla a mauris imperdiet sapien lobortis dapibus. Quisque ornare posuere pulvinar.
|
||||||
|
</div>
|
||||||
|
<div class="mainTestMeta">
|
||||||
|
Passing score: {{test.passing_score}}
|
||||||
|
</div>
|
||||||
|
<button><a href="/tests/{{test.id}}/show">Start</a></button>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user