]> Untitled Git - awful.systems.git/blob - maint-mode/maint-mode.css
add a basic maintenance mode module
[awful.systems.git] / maint-mode / maint-mode.css
1 html {
2     background-color: rgb(34, 34, 34);
3     color: white;
4 }
5
6 .content {
7     display: flex;
8     flex-direction: column;
9     align-items: center;
10     justify-content: center;
11 }
12
13 .logo-container {
14     width: 50%;
15     height: 50%;
16     padding: 2.5em;
17 }
18
19 .logo {
20     animation: rotate 600s infinite;
21 }
22
23 @keyframes rotate {
24     from { transform: rotate(0deg) }
25     to { transform: rotate(360deg) }
26 }