-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.92 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Start</title>
<link rel="stylesheet" href="css/textarea_line.css">
<link rel="stylesheet" href="css/grid12.css">
<link rel="stylesheet" href="css/general.css">
</head>
<body>
<div class="row" style="height:50px">
<div class="col-xs-1 col-md-1 col-lg-1"><button class="iconButton" id="quit_button"><img src='img/clear.svg'></img></button></div>
<div class="col-xs-1 col-md-1 col-lg-1"><button class="iconButton" id="record_button"><img src='img/date.svg'></img></button></div>
</div>
<div class="row">
<div class="col-xs-1 col-md-2 col-lg-2"></div>
<div class="col-xs-10 col-md-8 col-lg-8" style="font-size:18px; font-family: 'Ubuntu', sans-serif;">In the next <select class="maincolor selectStyle" id="timeLength">
<option value="10" style="background:pink;">10</option>
<option value="20">20</option>
<option value="25" selected>25</option>
<option value="30">30</option>
<option value="40">40</option>
</select> minutes, I am going to focus on</div>
</div>
<div class="row">
<div class="col-xs-1 col-md-2 col-lg-2"></div>
<div class="col-xs-10 col-md-8 col-lg-8">
<div class="form-style-8">
<textarea class="form-style-8 maincolor" placeholder="" onkeyup="adjust_textarea(this)" id="plan" style="font-family: 'Ubuntu', sans-serif;
"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-1 col-md-2 col-lg-2"></div>
<div class="col-xs-8 col-md-7 col-lg-7"></div>
<div class="col-xs-2 col-md-1 col-lg-1"><button class="iconButton" id="start_button"><img src='img/forward.svg' style="width:36px; height:36px;"></img></button></div>
</div>
<script>require('./index.js')</script>
<script type="text/javascript">
//auto expand textarea
function adjust_textarea(h) {
h.style.height = "20px";
h.style.height = (h.scrollHeight)+"px";
}
</script>
</body>
</html>