-
Notifications
You must be signed in to change notification settings - Fork 0
/
crazy-branch1.html
180 lines (112 loc) · 4.12 KB
/
crazy-branch1.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
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
<html>
<head>
<!-- crazy-branch1.html is my attempt to put buttons in my table in the navbar -->
<title>jQuery</title>
<meta charset="utf-8">
<script type="text/javascript" src="jquery.min.js"></script>
<script src="jquery-ui/jquery-ui.js"></script>
<link href="jquery-ui/jquery-ui.css" rel="stylesheet">
<style>
* {
margin:0px;
padding:0px;
}
body {
font-family: sans-serif;
}
#navbar {
background-color:#ededed;
width: 100%;
height:43px;
}
h3 {
position: relative;
float:left;
padding-top: 10px;
padding-left: 10px;
font-size: 22px;
}
#button_wrapper {
width: 260px;
margin: 0 auto;
}
#codeButtons {
margin: 0 auto;
border: 1px #888888 solid;
border-top:none;
border-bottom: none;
}
table {
position:relative;
top: 5px;
padding:0;
border-radius: 8px;
border-spacing:0;
}
button {
border: 1px #888888 solid;
/* border-right: 1px #888888 solid;
border-left:none;
border-top:none;
border-bottom: none; */
border-spacing:0;
padding:7px 6px;
margin:0;
line-height: normal;
font-weight: normal;
font-size: medium;
font-family: sans-serif;
background-color: #ededed;
border-right:none !important;
}
}
#outputButton {
border-right:none !important;
}
.clear {
clear:both;
}
#codeContainer {
width:100%;
height:100%;
}
.codeSpace {
width:25%;
border-right: 1px grey solid;
position:relative;
float:left;
height: 100%;
}
#userHTML {
width:24%;
}
#content {
border-right:none !important;
}
</style>
</head>
<body>
<div id="navbar">
<h3>CodePlayer</h3>
<div id="button_wrapper">
<table id="codeButtons">
<tr>
<td><button id="htmlButton">HTML</button></td>
<td><button>CSS</button></td>
<td><button>JavaScript</button></td>
<td><button id="outputButton">Output</button></td>
</tr>
</table>
</div>
</div>
<div class="clear"></div>
<div id="codeContainer">
<div class="codeSpace" id="userHTML">html</div>
<div class="codeSpace" id="userCSS">css</div>
<div class="codeSpace" id="userJS">js</div>
<div class="codeSpace" id="content">content</div>
</div>
<script type="text/javascript">
</script>
</body>
</html>