-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (75 loc) · 1.3 KB
/
style.css
File metadata and controls
87 lines (75 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
*{
font-family: monospace;
}
body{
margin: 0px;
background-color: #f4e7db;
}
div#mainDisplay{
/* z-index: 1; */
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
/* height: 99vh;
width: 99vw; */
}
#gravRender{
z-index: -1;
position: fixed;
/* background-color: #f4e7db; */
display: none;
}
#sinRender{
z-index: -1;
position: fixed;
/* background-color: #f4e7db; */
display: none;
}
#render{
z-index: -1;
position: fixed;
background-color: #f4e7db;
display: none;
/* border: black 1px solid; */
}
#modalTest{
display: block;
border: 1px black solid;
border-radius: 1rem;
scale: 0;
opacity: 0;
background-color: #D1AF8E;
transition: all 1s;
}
#modalTest>div{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
h1{
margin: 0px;
}
#modalTest::backdrop{
/* background-color: blue; */
}
#modalTest[open]{
scale: 1;
opacity: 1;
}
#showMeOptions{
font-size: 1.5rem;
}
button{
padding: .5rem 1rem;
border-radius: .4rem;
border: #553F91 2px solid;
color: #553F91;
background-color: #cbc7d3;
margin: .5rem;
}
button:hover{
background-color: #c0b9d1;
}