-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
188 lines (154 loc) · 3.67 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* HTML */
html {
scroll-behavior: smooth;
height: 100%;
}
/* Body properties */
/* Bootstrap */
#front_page {
margin-left: 20px;
}
.card-text {
color: white !important
}
#grad {
background-image: linear-gradient(to bottom right, #7df0f0, #cff0c9);
}
body {
/* margin: 0; */
/* display: grid;
grid-template-columns: min-content 1fr; */
font-family: system-ui, sans-serif;
/* this breaks position sticky in Firefox */
/* overflow-x: hidden; */
background-repeat: no-repeat;
background-attachment: fixed;
height: 100%;
}
/* Home page logo */
#logo { color: #fad20a;
font: bold 60px Roboto, Arial, Sans-Serif;
text-shadow: 1px 1px #0a9afa, 2px 2px #0a9afa, 3px 3px #0a9afa;
-webkit-transition: all 0.12s ease-out;
-moz-transition: all 0.12s ease-out;
-ms-transition: all 0.12s ease-out;
-o-transition: all 0.12s ease-out;
}
#logo:hover {
position: relative; top: -3px; left: -3px;
text-shadow: 1px 1px #0a9afa, 2px 2px #0a9afa, 3px 3px #f0f9ff, 4px 4px #0a9afa, 5px 5px #0a9afa, 6px 6px #0a9afa;
}
/* Text properties */
h1 {
font-family:arial;
font-size:95px;
font-style:italic;
color:#31ecaf
}
h3 {
font-family: 'Arial', Geneva, sans-serif;
color: rgb(49, 136, 148);
}
h2 {
font-family: 'Arial', Geneva, sans-serif;
font-size: 35px;
color: rgb(49, 136, 148);
padding-top: 25px;
text-align: center;
}
p {
font-family: 'Arial', Geneva, sans-serif;
font-size:18px;
color: rgb(65, 73, 107);
}
/* NAV BAR */
/* Add a black background color to the top navigation */
#navbar {
background-color: #8cbaba;
overflow: hidden;
opacity: .9;
/* margin:0 auto; */
z-index: 1;
/* left:0; */
margin-bottom:40px;
text-align: center;
}
/* Style the links inside the navigation bar */
#navbar a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
#navbar a:hover {
background-color: #ddd;
color: black;
transition: 0.3s;
}
/* Add a color to the active/current link */
#navbar a.active {
background-color: #0a9afa;
color: white;
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
position: fixed;
top: 0;
width: 100%;
}
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
padding-top: 60px;
}
/* */
/* prerequisite mapper gets loaded on top of this */
#mapper_div {
margin-top: 25px;
border-radius: 25px;
width: 1200px;
height: 850px;
border: 4px solid #adadbe;
background: rgb(235, 230, 230);
/* opacity: 0; */
}
/* Textbox div for tutorial section */
.tut_img {
background: rgb(29, 29, 29);
text-align: center;
color: white;
font-size: 20px;
padding-bottom: 5px;
margin-left: 15px;
margin-bottom: 15px;
border-radius: 25px;
display: inline-block;
}
.tut_img img {
/* width: 455px; */
height: 225px;
display: block;
margin: 0 auto;
max-width:100%;
/* height: auto; */
}
/* Graph style classes */
div.tooltip {
position: absolute;
text-align: center;
/* width: 70px;
height: 28px; */
padding: 2px;
font: 12px sans-serif;
background: lightsteelblue;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
g.tooltip2 {
padding: 2px;
font: 12px sans-serif;
}
/* .tab { margin-left: 40px; } */