Skip to content
This repository was archived by the owner on Jun 18, 2021. It is now read-only.

Commit 2e6a4ee

Browse files
committed
commit 1/12/18
1 parent 6058f74 commit 2e6a4ee

21 files changed

+731
-520
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Welcome to codeplanet
2+
To start the server, navigate to /site_pages/main.php and open the file. Click the green run button in the cloud9 navbar.
3+
There will be a link that appears in the console area below. Click the link, and the project will open in a new tab.

images/earth.png

1.63 MB
Loading

project_resources/MDB-Free/css/style.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ header,
180180
margin-top: 0;
181181
}
182182
#edit_body {
183-
padding-top: 30px;
183+
padding-top: 45px;
184184
overflow-x:hidden;
185185
overflow-y: hidden;
186186
font-size: 1rem;
@@ -198,8 +198,8 @@ header,
198198
-webkit-box-shadow: none;
199199
-moz-box-shadow: none;
200200
box-shadow: none;
201-
font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,Lucida Console,monospace;
202201
font-size:12px;
202+
font-family: "Lucida Console", "Lucida Sans Typewriter", monaco, "Bitstream Vera Sans Mono", monospace;
203203
background-color: #000000;
204204
color: #00ff00;
205205
resize: none;
@@ -275,6 +275,7 @@ header,
275275
margin: auto;
276276
margin-top: 25px;
277277
height: auto;
278+
text-align: center;
278279
}
279280
#run_btn,
280281
#clear1_btn,
@@ -466,7 +467,28 @@ header,
466467
pre{
467468
margin-left: 5%;
468469
margin-right: 5%;
469-
background-color: #eee;
470+
background-color: #cecece;
470471
display: block;
471472
padding: 20px;
472473
}
474+
475+
.modal-content{
476+
-webkit-border-radius: 10px !important;
477+
-moz-border-radius: 10px !important;
478+
border-radius: 10px !important;
479+
}
480+
.modal-header{
481+
border-top-right-radius: 10px !important;
482+
border-top-left-radius: 10px !important;
483+
}
484+
485+
.tooltip-wrapper .btn[disabled] {
486+
pointer-events: none;
487+
}
488+
489+
.tooltip-wrapper.disabled {
490+
cursor: not-allowed;
491+
}
492+
.bigger{
493+
font-size: 20px;
494+
}

project_resources/faq_stuff.css

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
a {
2+
color: inherit;
3+
}
4+
h1, h2, h3, h4 {
5+
margin: 0;
6+
margin-bottom: 10px;
7+
margin-top: 10px;
8+
}
9+
h1 {
10+
font-size: 3em;
11+
}
12+
.menu {
13+
-webkit-filter: url("#shadowed-goo");
14+
filter: url("#shadowed-goo");
15+
}
16+
.menu-item, .menu-open-button {
17+
background: #A239CA;
18+
border-radius: 100%;
19+
width: 80px;
20+
height: 80px;
21+
margin-left: -40px;
22+
position: absolute;
23+
top: 20px;
24+
color: white;
25+
text-align: center;
26+
line-height: 80px;
27+
-webkit-transform: translate3d(0, 0, 0);
28+
transform: translate3d(0, 0, 0);
29+
-webkit-transition: -webkit-transform ease-out 200ms;
30+
transition: -webkit-transform ease-out 200ms;
31+
transition: transform ease-out 200ms;
32+
transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
33+
}
34+
.menu-open {
35+
display: none;
36+
}
37+
.hamburger {
38+
width: 25px;
39+
height: 3px;
40+
background: white;
41+
display: block;
42+
position: absolute;
43+
top: 50%;
44+
left: 50%;
45+
margin-left: -12.5px;
46+
margin-top: -1.5px;
47+
-webkit-transition: -webkit-transform 200ms;
48+
transition: -webkit-transform 200ms;
49+
transition: transform 200ms;
50+
transition: transform 200ms, -webkit-transform 200ms;
51+
}
52+
.hamburger-1 {
53+
-webkit-transform: translate3d(0, -8px, 0);
54+
transform: translate3d(0, -8px, 0);
55+
}
56+
.hamburger-2 {
57+
-webkit-transform: translate3d(0, 0, 0);
58+
transform: translate3d(0, 0, 0);
59+
}
60+
.hamburger-3 {
61+
-webkit-transform: translate3d(0, 8px, 0);
62+
transform: translate3d(0, 8px, 0);
63+
}
64+
.menu-open:checked + .menu-open-button .hamburger-1 {
65+
-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
66+
transform: translate3d(0, 0, 0) rotate(45deg);
67+
}
68+
.menu-open:checked + .menu-open-button .hamburger-2 {
69+
-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
70+
transform: translate3d(0, 0, 0) scale(0.1, 1);
71+
}
72+
.menu-open:checked + .menu-open-button .hamburger-3 {
73+
-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
74+
transform: translate3d(0, 0, 0) rotate(-45deg);
75+
}
76+
.menu {
77+
position: absolute;
78+
left: 50%;
79+
margin-left: -80px;
80+
padding-top: 20px;
81+
padding-left: 80px;
82+
width: 650px;
83+
height: 150px;
84+
box-sizing: border-box;
85+
font-size: 20px;
86+
text-align: left;
87+
}
88+
.menu-item:hover {
89+
background: white;
90+
color: #A239CA;
91+
}
92+
.menu-item:nth-child(3) {
93+
-webkit-transition-duration: 180ms;
94+
transition-duration: 180ms;
95+
}
96+
.menu-item:nth-child(4) {
97+
-webkit-transition-duration: 180ms;
98+
transition-duration: 180ms;
99+
}
100+
.menu-item:nth-child(5) {
101+
-webkit-transition-duration: 180ms;
102+
transition-duration: 180ms;
103+
}
104+
.menu-open-button {
105+
z-index: 2;
106+
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
107+
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
108+
-webkit-transition-duration: 400ms;
109+
transition-duration: 400ms;
110+
-webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
111+
transform: scale(1.1, 1.1) translate3d(0, 0, 0);
112+
cursor: pointer;
113+
}
114+
.menu-open-button:hover {
115+
-webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
116+
transform: scale(1.2, 1.2) translate3d(0, 0, 0);
117+
}
118+
.menu-open:checked + .menu-open-button {
119+
-webkit-transition-timing-function: linear;
120+
transition-timing-function: linear;
121+
-webkit-transition-duration: 200ms;
122+
transition-duration: 200ms;
123+
-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
124+
transform: scale(0.8, 0.8) translate3d(0, 0, 0);
125+
}
126+
.menu-open:checked ~ .menu-item {
127+
-webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
128+
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
129+
}
130+
.menu-open:checked ~ .menu-item:nth-child(3) {
131+
-webkit-transition-duration: 170ms;
132+
transition-duration: 170ms;
133+
-webkit-transform: translate3d(80px, 0, 0);
134+
transform: translate3d(80px, 0, 0);
135+
}
136+
.menu-open:checked ~ .menu-item:nth-child(4) {
137+
-webkit-transition-duration: 250ms;
138+
transition-duration: 250ms;
139+
-webkit-transform: translate3d(160px, 0, 0);
140+
transform: translate3d(160px, 0, 0);
141+
}
142+
.menu-open:checked ~ .menu-item:nth-child(5) {
143+
-webkit-transition-duration: 330ms;
144+
transition-duration: 330ms;
145+
-webkit-transform: translate3d(240px, 0, 0);
146+
transform: translate3d(240px, 0, 0);
147+
}
148+
button.accordion {
149+
background-color: #4717F6;
150+
color: #FFFFFF;
151+
cursor: pointer;
152+
padding: 18px;
153+
width: 100%;
154+
border: none;
155+
text-align: left;
156+
outline: none;
157+
font-size: 15px;
158+
font-family: Roboto,sans-serif;
159+
transition: 0.4s;
160+
}
161+
button.accordion.active, button.accordion:hover {
162+
background-color: #2604A4;
163+
}
164+
button.accordion:after {
165+
content: '\002B';
166+
color: #FFFFFF;
167+
font-weight: bold;
168+
float: right;
169+
margin-left: 5px;
170+
}
171+
button.accordion.active:after {
172+
content: "\2212";
173+
}
174+
div.panel {
175+
padding: 0 18px;
176+
background-color: #d3d3d3;
177+
max-height: 0;
178+
overflow: hidden;
179+
transition: max-height 0.2s ease-out;
180+
font-family: Roboto,sans-serif;
181+
}
182+
#realLink{
183+
color: purple;
184+
}

project_resources/planet_spin.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
}
1515
body {
1616
background-color: #101010;
17+
overflow: hidden;
1718
}
1819
.planet-image {
1920
width: 25vw;
@@ -22,7 +23,7 @@ body {
2223
max-height: 256px;
2324
border-radius: 50%;
2425
position: relative;
25-
background: #303030 url('/images/night_sky.jpg') repeat-x center center;
26+
background: #303030 url('/images/earth.png') repeat-x center center;
2627
background-size: cover;
2728
-webkit-animation: planet-rotation 15s linear infinite;
2829
}

project_resources/sethLib.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,4 +446,12 @@ function clear_editor(){
446446
$('.clearingEditor').css('display', 'block');
447447
$('.eraserAnimation2').css('display', 'none');
448448
}, 2000);
449-
}
449+
}
450+
451+
$(document).ready(function(){
452+
$('[data-toggle="tooltip"]').tooltip();
453+
});
454+
455+
$(function() {
456+
$('.tooltip-wrapper').tooltip({position: "bottom"});
457+
});

site_pages/about.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta charset="utf-8">
99
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1010
<meta http-equiv="x-ua-compatible" content="ie=edge">
11-
<title>codeplanet</title>
11+
<title>About Us - codeplanet</title>
1212
<link rel="icon" href="/images/planet.ico" type="image/x-icon">
1313
<!-- Font Awesome -->
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">

site_pages/docs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta charset="utf-8">
99
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1010
<meta http-equiv="x-ua-compatible" content="ie=edge">
11-
<title>codeplanet</title>
11+
<title>Docs - codeplanet</title>
1212
<link rel="icon" href="/images/planet.ico" type="image/x-icon">
1313
<!-- Font Awesome -->
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css">
@@ -35,7 +35,7 @@ function offsetAnchor() {
3535
<div class="divider-new pt-5">
3636
<h2 class="h2-responsive wow fadeIn">Library Documentation</h2>
3737
</div>
38-
<p>This is intended to be a more in-depth guide to demonstrate how the codeplanet library functions. This information is also available in the code editor by calling the help function.</p>
38+
<p class="bigger text-center">This is intended to be a more in-depth guide to demonstrate how the codeplanet library functions. This information is also available in the code editor by calling the help function.</p>
3939
<div class="divider-new pt-5">
4040
<h3 class="h3-responsive wow fadeIn" id="editor_tag">Table of Contents</h3>
4141
</div>

0 commit comments

Comments
 (0)