Homepage: https://theme.roundabout-host.com

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 required.css

View raw Download
text/plain • 344 B
ASCII text
        
            
1
:root {
2
--primary: #fefefe;
3
--primary-text: #010101;
4
}
5
6
body {
7
background-color: var(--primary);
8
color: var(--primary-text);
9
width: min(896px, 100vw);
10
margin: 0 auto;
11
padding: 35px;
12
min-height: calc(100% - 70px);
13
box-shadow: 0px 0px 50px var(--primary);
14
}
15
16
html {
17
background-color: #7f7;
18
height: 100%;
19
}
20