Browse Source

fixed some stuff

master
alicestrt 3 years ago
parent
commit
2c54471003
  1. 41
      index.html
  2. 37
      static/css/style.css

41
index.html

@ -19,16 +19,27 @@
<body>
<div class="container-fluid p-0">
<div class="bg">
<div class="row">
<div class="col-md-4 offset-md-8" id="menu">
<span id="about">
<a href="#" >about</a> |
</span>
<span id="colophon">
<a href="#" >colophon</a> |
</span>
<span id="how">
<a href="#" >how to use</a>
</span>
</div>
</div>
<div class="row">
<!-- background audio -->
<div class="col-md-9" style="position: static;">
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-1">
<button onclick="playpause('audioBG')" type="button" name="button"><i class="audioBG fa fa-play"></i></button></div>
<div class="col-md-5">
<div class="col-md-5 offset-md-1">
<button onclick="playpause('audioBG')" type="button" name="button"><i class="audioBG fa fa-play"></i></button>
<audio id="audioBG"
preload="metadata" onloadedmetadata="mDur(dur1,audioBG)" ontimeupdate="mPlay(dur1,audioBG)">
<source src="static/audio/output.webm" type="audio/mpeg">
@ -47,28 +58,8 @@ preload="metadata" onloadedmetadata="mDur(dur1,audioBG)" ontimeupdate="mPlay(dur
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="row">
<div class="col-md-12">
<span id="about">
<a href="#" >about</a> |
</span>
<span id="colophon">
<a href="#" >colophon</a> |
</span>
<span id="how">
<a href="#" >how to use</a>
</span>
<!-- <h1 id="about">Wells of Knowledge</h1> -->
</div>
</div>
</div>
</div>
<!-- new row should start here -->
<!-- pop up thesis -->

37
static/css/style.css

@ -4,7 +4,7 @@
@import url('https://fonts.googleapis.com/css2?family=Asul&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Walter+Turncoat&display=swap');
* {
border: 0px black solid;
border: 1px black solid;
}
body {
@ -61,14 +61,15 @@ body {
/* Audio in background */
.audioBG {
padding-top: 10px;
margin-top: 35px;
margin-left: 50px;
}
button {
background-color: #fff0f000;
}
#dur1 {
padding-top: 18px;
margin-top: 40px;
}
.audio-button {
background: transparent;
@ -152,7 +153,7 @@ a {
#box1 {
height: 15px;
width: 15px;
margin-left : 10px;
margin-left : 58px;
margin-top: 5px;
display: inline-block;
color: #d81159;
@ -297,19 +298,7 @@ h2 {
/* circles */
#first_circle {
width: 100%;
height: 100%;
}
#second_circle {
width: 100%;
height: 100%;
}
@media all and (max-width: 350px) {
}
.draggable {
position: absolute;
cursor: move;
@ -465,8 +454,6 @@ color: #d81159;
left: 20%;
}
/*d3 map*/
.link {
stroke: #c46666;
@ -485,3 +472,17 @@ color: #d81159;
display: inline;
/* box-shadow: 5px 0 0px 0px #bedbbb, -5px 0 0px 0px #bedbbb; */
}
/*media*/
@media (max-width: 770px) {
#menu {
text-align: center;
}
.map_legend p {
font-size: 0.8em;
}
}

Loading…
Cancel
Save