speedworks/speedy

View on GitHub
Views/welcome.vu.php

Summary

Maintainability
A
0 mins
Test Coverage
<!DOCTYPE html>
<html lang="en">
<head>

    <title>Speedy</title>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- Fonts -->
    <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
    <style>
        html, body
        {
            background-color: #fff;
            color: #636b6f;
            font-family: 'Raleway', sans-serif;
            font-weight: 100;
            height: 100vh;
            margin: 0;
        }
        .full-height
        {
            height: 100vh;
        }
        .center
        {
            align-items: center;
            display: flex;
            justify-content: center;
        }
        .reference
        {
            position: relative;
        }
        .content
        {
            text-align: center;
        }
        .title
        {
            font-size: 84px;
            color: #5459f5;
        }
        .middle
        {
            margin-bottom: 30px;
        }
    </style>
</head>
<body>
<div class="center reference full-height">
    <div class="content">
        <div class="title middle">
            Welcome to Speedy !
        </div>
    </div>
</div>
</body>
</html>