69
|
1 .navbar {
|
|
2 text-align: left; /* Override body text align */
|
|
3 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
|
|
4 }
|
|
5 .container {
|
|
6 width: 98%;
|
|
7 margin-top: 1%;
|
|
8 }
|
|
9 body {
|
|
10 color: white;
|
|
11 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
12 text-align: center;
|
|
13 text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
|
|
14 }
|
|
15 div.box {
|
|
16 background-color: rgba(0, 0, 0, 0.5);
|
|
17 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset;
|
|
18 color: white;
|
|
19 text-align: center;
|
|
20 margin: 1% auto;
|
|
21 padding: 15px;
|
|
22 max-width: 500px;
|
|
23 }
|
|
24 .center {
|
|
25 position: absolute;
|
|
26 top: 50%;
|
|
27 left: 50%;
|
|
28 transform: translate(-50%, -50%);
|
|
29 }
|
|
30 a:link, a:visited, a:hover, a:active {
|
|
31 color: #ff6600;
|
|
32 }
|
|
33 /* Only in index.html */
|
|
34 div.logos {
|
|
35 filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
|
|
36 image-rendering: pixelated;
|
|
37 }
|