source: gs3-extensions/dl-chatgpt/trunk/src/react-gui/styles/globals.css.orig@ 38809

Last change on this file since 38809 was 38809, checked in by davidb, 4 months ago

New location for this script (previously in thewillow site); note this version has a few extra changes in it from the last commit in thewillow site version

File size: 370 bytes
Line 
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
2
3* {
4 box-sizing: border-box;
5 padding: 0;
6 margin: 0;
7 font-family: 'Inter', sans-serif;
8}
9
10html,
11body {
12 max-width: 100vw;
13 overflow-x: hidden;
14}
15
16body {
17 color: snow;
18 background: #0e1524;
19}
20
21a {
22 color: inherit;
23 text-decoration: none;
24}
25
26a:hover {
27 opacity: 0.8;
28}
Note: See TracBrowser for help on using the repository browser.