-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenderingstyle.css
96 lines (85 loc) · 1.76 KB
/
renderingstyle.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
margin: 0;
font-family: "Montserrat", sans-serif;
background-color: #000;
}
header {
margin-top: 3em;
text-align: center;
color: white;
}
header h1 {
font-size: 2em;
font-weight: 900;
}
#container3D canvas {
width: 100vw !important;
height: 100vh !important;
position: absolute;
top: 0;
left: 0;
}
.top{
position: fixed;
background-color: rgb(32, 32, 32);
width:100%;
border-bottom: 2px black solid;
height:5vw;
z-index: 2;
align-content: center;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Adjust the shadow properties as needed */
}
.sitelogo{
display:flex;
transform-origin: top left;
position:relative;
color:aliceblue;
top:-0.25vw;
left:1%;
font-size: 1vw;
align-items: center;
font-family: 'Poppins', sans-serif;
}
.wireframe{
height:2vw;
position:absolute;
top:85%;
border-radius: 10px;
background:none;
border-color: red;
text-shadow: 1px 1px 2px red, 0 0 1em red, 0 0 0.2em red;
color:aliceblue;
font-size: 0.75vw;
font-style:italic;
font-weight: bolder;
margin: 5% 0%;
left:1%;
box-shadow:
0 0 20px rgba(255, 0, 0, 0.75), /* outer shadow */
inset 0 0 20px rgba(255, 0, 0, 0.75); /* inner shadow */
width:7vw;
cursor:pointer;
transition-duration: 0.2s;
transition: opacity 1s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.wireframe:hover{
box-shadow:
0 0 3vw rgba(255, 0, 0, 0.75), /* outer shadow */
inset 0 0 3vw rgba(255, 0, 0, 0.75); /* inner shadow */
transition-duration: 0.2s;
transform:scale(1.01);
}
.sitelogo h1 a{
text-decoration: none;
color:white;
}
.sitelogo img{
height:4vw;
width: 4vw;
border-radius: 25%;
margin-right: 1vw;
border-color: aliceblue;
border-width: 2px;
border-style: solid;
transform-origin: top left;
}