bilca commited on
Commit
20eb9fb
·
verified ·
1 Parent(s): 3735d23

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +25 -18
style.css CHANGED
@@ -1,33 +1,40 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
4
  background-color: black;
 
 
 
 
 
 
5
  }
6
 
7
- h1 {
8
- font-size: 16px;
9
- margin-top: 0;
10
  }
11
 
12
- p {
13
-
14
- font-size: 15px;
15
- margin-bottom: 10px;
16
- margin-top: 5px;
17
  }
18
 
19
- canvas{
20
- background-color : transparent;
 
 
21
  }
22
 
23
  .card {
24
- max-width: 620px;
25
- margin: 0 auto;
26
- padding: 16px;
27
- border: 1px solid lightgray;
28
- border-radius: 16px;
29
  }
30
 
31
  .card p:last-child {
32
- margin-bottom: 0;
33
  }
 
1
  body {
2
+ margin: 0;
3
+ padding: 0;
4
+ font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
5
  background-color: black;
6
+ width: 100vw;
7
+ height: 100vh;
8
+ display: flex;
9
+ justify-content: center;
10
+ align-items: center;
11
+ overflow: hidden;
12
  }
13
 
14
+ canvas {
15
+ display: block;
16
+ background-color: transparent; /* Ensures gsplat blending is correct */
17
  }
18
 
19
+ h1 {
20
+ font-size: 16px;
21
+ margin-top: 0;
 
 
22
  }
23
 
24
+ p {
25
+ font-size: 15px;
26
+ margin-bottom: 10px;
27
+ margin-top: 5px;
28
  }
29
 
30
  .card {
31
+ max-width: 620px;
32
+ margin: 0 auto;
33
+ padding: 16px;
34
+ border: 1px solid lightgray;
35
+ border-radius: 16px;
36
  }
37
 
38
  .card p:last-child {
39
+ margin-bottom: 0;
40
  }