-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (58 loc) · 1.56 KB
/
style.css
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
html {
width: 100%;
height: 100%;
}
body {
background: linear-gradient(317deg, #0c0613 0%, #1E1E1E 100%);
margin: 0;
padding: 0;
}
.menubar {
display: flex;
background-color: rgb(34, 34, 34);
height: auto;
width: auto;
margin: 0;
padding: 20px;
}
.menubar h1 {
cursor: default;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
width: fit-content;
height: fit-content;
color: rgb(184, 184, 184);
transition: color 0.5s, text-shadow 0.5s;
margin-right: 45px;
}
.menubar h1:hover {
color: rgb(255, 255, 255);
text-shadow: 0 0 20px rgb(255, 255, 255);
}
button {
border: none;
background: rgba(168, 168, 168, 0.219);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: rgb(255, 255, 255);
font-weight: bold;
margin-right: 20px;
width: fit-content;
height: fit-content;
padding: 15px;
font-size: large;
border-radius: 10px;
transition: background 0.5s, transform 0.5s, box-shadow 0.5s;
}
.menubar button:hover {
background: linear-gradient(153deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.23) 48.56%, rgba(255, 255, 255, 0.00) 100%);
transform: scale(1.1);
box-shadow: 0 0 13px rgb(0, 0, 0);
}
#render {
position: absolute;
top: 10%;
left: 13%;
width: 75%;
height: 75%;
background-color: #0c0613;
}