Update loading splash to fit in with l&f (#3685)

This commit is contained in:
Jaco Greeff 2016-11-30 00:06:58 +01:00 committed by Nicolas Gotchac
parent 7cfec1e1c8
commit 8fd8bdf0f5
2 changed files with 18 additions and 28 deletions

View File

@ -11,28 +11,23 @@
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 0; padding: 0;
} background: white;
font-family: 'Roboto', sans-serif;
.loading-container { font-size: 16px;
display: flex; font-weight: 300;
align-items: center;
justify-content: center;
height: 100%;
font-family: Roboto;
background-color: rgba(0, 0, 0, 0.8);
color: #ddd;
} }
.loading { .loading {
font-size: 4em; text-align: center;
padding-top: 5em;
font-size: 2em;
color: #999;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="container"> <div id="container">
<div class="loading-container"> <div class="loading">Loading</div>
<span class="loading">Loading...</span>
</div>
</div> </div>
<script src="vendor.js"></script> <script src="vendor.js"></script>
<% if (!htmlWebpackPlugin.options.secure) { %> <% if (!htmlWebpackPlugin.options.secure) { %>

View File

@ -11,28 +11,23 @@
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 0; padding: 0;
} background: white;
font-family: 'Roboto', sans-serif;
.loading-container { font-size: 16px;
display: flex; font-weight: 300;
align-items: center;
justify-content: center;
height: 100%;
font-family: Roboto;
background-color: rgba(0, 0, 0, 0.8);
color: #ddd;
} }
.loading { .loading {
font-size: 4em; text-align: center;
padding-top: 5em;
font-size: 2em;
color: #999;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="container"> <div id="container">
<div class="loading-container"> <div class="loading">Loading</span>
<span class="loading">Loading...</span>
</div>
</div> </div>
<script src="vendor.js"></script> <script src="vendor.js"></script>
</body> </body>