-
Notifications
You must be signed in to change notification settings - Fork 0
/
world_maze.css
92 lines (80 loc) · 1.6 KB
/
world_maze.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
/* ---------- css for '' Web Scene ---------- */
html {
height: 100%;
width: 100%;
}
body {
margin: 0;
height: 100%;
width: 100%;
overflow-x: hidden;
background-color: #fafafa;
font-family: 'Raleway-light';
}
p {
padding-left: 16px;
color: #34495e;
}
.title-container {
position: relative;
background-color: #34495e;
height: 65px;
box-shadow: 0 -15px 15px 15px rgba(0, 0, 0, 0.4);
background-image: url("https://cyberbotics.com/assets/images/webots.png");
background-repeat: no-repeat;
background-position: 16px 11px;
background-size: 40px;
z-index: 1;
}
.title-container h1 {
padding-left: 70px;
font-size: 26px;
font-weight: 300;
color: #fafafa;
position: absolute;
}
.webots-view-container {
position: relative;
display: flex;
justify-content: center;
margin: 0;
height: calc(0.8 * (100vh - 115px));
width: calc(100% + 2px);
box-shadow: -50px -5px 25px 20px rgba(255, 255, 255, 1);
}
webots-view {
width: 100%;
display: block;
position: relative;
}
.description-container {
min-height: 10%;
background-color: #fafafa;
height: calc(0.2 * (100vh - 115px));
overflow: auto;
padding: 10px;
}
.description-container p {
margin-right: 25%;
margin-bottom: 40px;
}
.bottom-container {
position: fixed;
height: 50px;
bottom: 0;
width: 100%;
background-color: #34495e;
box-shadow: -50px 0px 25px 20px rgba(255, 255, 255, 1);
margin: auto;
}
.bottom-container p {
color: #fafafa;
font-size: 12px;
padding-top: 5px;
padding-left: 24px;
font-family: 'Arial';
}
.bottom-container a {
color: #00a785;
font-family: 'Arial';
}