]> Untitled Git - awful.systems.git/blob - maint-mode/maint-mode.css
docs: add database information
[awful.systems.git] / maint-mode / maint-mode.css
1 html {
2     background-color: rgb(34, 34, 34);
3     color: white;
4     font-family: 'Open Sans', 'Droid Sans', Arial, sans-serif;
5 }
6
7 a {
8     color: rgb(231, 76, 60);
9     text-decoration: none;
10 }
11
12 a:visited {
13     color: rgb(231, 76, 60);
14     text-decoration: none;
15 }
16
17 .content {
18     display: flex;
19     flex-direction: column;
20     align-items: center;
21     justify-content: center;
22 }
23
24 .logo-container {
25     width: 50%;
26     height: 50%;
27     padding: 2.5em;
28 }
29
30 .logo {
31     animation: rotate 600s infinite;
32 }
33
34 @keyframes rotate {
35     from { transform: rotate(0deg) }
36     to { transform: rotate(360deg) }
37 }