Skip to content
Merged
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
11 changes: 8 additions & 3 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12879,16 +12879,17 @@ label {
}
.home-intro .laminas {
width: 200px;
margin-top: 20px;
}
@media (max-width: 768px) {
.home-intro .laminas {
width: 100px;
margin-top: 6px;
}
}
.home-intro .mezzio {
width: 70px;
height: 60px;
padding-left: 10px;
}
@media (max-width: 768px) {
.home-intro .mezzio {
Expand All @@ -12898,6 +12899,8 @@ label {
}
.home-intro .mezzio-title {
color: #013755;
font-family: "Barlow", sans-serif;
font-weight: 400;
font-size: 55px;
line-height: 55px;
padding-left: 10px;
Expand All @@ -12906,14 +12909,15 @@ label {
.home-intro .mezzio-title {
font-size: 27px;
line-height: 27px;
padding-left: 5px;
}
}

.home-intro h1, .home-intro .h1 {
font-family: "Space Grotesk", sans-serif;
font-style: normal;
font-weight: 700;
font-size: 92px;
font-size: 70px;
line-height: 95px;
color: #000000;
}
Expand All @@ -12934,9 +12938,10 @@ label {
height: 103px;
}

@media (max-width: 991px) {
@media (max-width: 1200px) {
.home-intro h1, .home-intro .h1 {
font-size: 60px;
line-height: 75px;
}
}
@media (max-width: 768px) {
Expand Down
11 changes: 8 additions & 3 deletions src/App/assets/scss/components/_pages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,17 @@

.laminas {
width: 200px;
margin-top: 20px;

@media ( max-width: 768px) {
width: 100px;
margin-top: 6px;
}
}

.mezzio {
width: 70px;
height: 60px;
padding-left: 10px;

@media ( max-width: 768px) {
width: 35px;
Expand All @@ -154,13 +155,16 @@

.mezzio-title {
color: #013755;
font-family: "Barlow", sans-serif;
font-weight: 400;
font-size: 55px;
line-height: 55px;
padding-left: 10px;

@media ( max-width: 768px) {
font-size: 27px;
line-height: 27px;
padding-left: 5px;
}
}
}
Expand All @@ -169,7 +173,7 @@
font-family: 'Space Grotesk', sans-serif;
font-style: normal;
font-weight: 700;
font-size: 92px;
font-size: 70px;
line-height: 95px;
color: #000000;
}
Expand All @@ -190,9 +194,10 @@
height: 103px;
}

@media ( max-width: 991px) {
@media ( max-width: 1200px) {
.home-intro h1 {
font-size: 60px;
line-height: 75px;
}
}

Expand Down
15 changes: 8 additions & 7 deletions src/App/templates/app/home.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@
<div class="row">
<div class="col-lg-6 title">
<p class="welcome">Dotkernel API</p>
<h1>PHP skeleton app for building REST API's using </h1>
<div class="logo-third-party">
<img class="laminas" src="{{ asset('images/app/laminas-foundation-rgb.svg') }}"
alt="Laminas Foundation">
<img class="mezzio" src="{{ asset('images/app/trademark-laminas-mezzio.svg') }}" alt="Mezzio">
<p class="mezzio-title">Mezzio</p>
</div>
<h1>PHP skeleton app for building REST APIs using
{# <div class="logo-third-party">#}
<img class="laminas" src="{{ asset('images/app/laminas-foundation-rgb.svg') }}"
alt="Laminas Foundation">
<img class="mezzio" src="{{ asset('images/app/trademark-laminas-mezzio.svg') }}" alt="Mezzio">
<span class="mezzio-title">Mezzio</span>
{# </div>#}
</h1>
<div class="row boxes">
<div class="box-small box-left">
<p class="subtext"><b>Dotkernel API</b> is an alternative for legacy <b>Laminas API
Expand Down
4 changes: 2 additions & 2 deletions src/App/templates/layout/default.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<link href="https://fonts.googleapis.com/css?family=Space+Grotesk:200,300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Barlow:400,500,600" rel="stylesheet">

<link href="{{ asset('css/app.css') }}" rel="stylesheet" />
<link href="{{ asset('css/app.css?v=2') }}" rel="stylesheet" />

{% block stylesheets %}{% endblock %}
</head>
Expand Down Expand Up @@ -196,7 +196,7 @@
</div>
</footer>

<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ asset('js/app.js?v=2') }}"></script>
{% block javascript %}{% endblock %}
</body>
</html>