Akshit Tripathi 11 years ago
parent
commit
5f2e091328
4 changed files with 146 additions and 46 deletions
  1. 35 5
      header.html
  2. 12 19
      index.html
  3. 22 22
      input.html
  4. 77 0
      style.css

+ 35 - 5
header.html

@@ -1,9 +1,39 @@
+<!-- Code by Sunit Kumar Nandi -->
+
 <!DOCTYPE html>
 <html>
+<head>
+	<title>WebGCC</title>
+	<link href='http://fonts.googleapis.com/css?family=Nixie+One|Iceland' rel='stylesheet' type='text/css'>
+	<!-- I'd link to the CSS, but this baby deserves her own style! -->
+</head>
+<body>
+<style type="text/css">
+	h1 {
+		font-family: "Iceland", cursive;
+		color: #FFFFFF;
+	}
 
-<!-- Header page -->
-<!-- Centre-aligning the text -->
-<h1 align="center">WebGCC: simple GCC web interface</h1>
-<p align="center">Test your C/C++ codes online. By Sunit Kumar Nandi.</p>
-
+	p {
+		font-family: "Nixie One", cursive;
+		color: #FFFFFF;
+	}
+	body{
+		background-image: -webkit-gradient(
+		linear,
+		left top,
+		left bottom,
+		color-stop(0, #3B7FD9),
+		color-stop(1, #8426FF)
+		);
+		background-image: -o-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
+		background-image: -moz-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
+		background-image: -webkit-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
+		background-image: -ms-linear-gradient(bottom, #3B7FD9 0%, #8426FF 100%);
+		background-image: linear-gradient(to bottom, #3B7FD9 0%, #8426FF 100%);
+	}
+</style>
+<h1 align="center">GCC web interface</h1>
+<p align="center">Test your C/C++ codes online. By Sunit Kumar Nandi</p>
+</body>
 </html>

+ 12 - 19
index.html

@@ -1,24 +1,17 @@
-<!DOCTYPE html>
-<html>	
+<!-- Code by Sunit Kumar Nandi -->
 
-<!-- Interface page -->
+<!DOCTYPE html>
+<html lang="en">	
 <head>
-<title>Web interface for GCC compiler</title>
+	<meta charset="utf-8">
+	<title>Web interface for GCC compiler</title>
+	<link rel="stylesheet" type="text/css" href="./style.css">
 </head>
-
-
-<!-- Create two horizontal frames of 20% and 80% height -->
-<frameset rows="20%,80%">
-<!-- Load the header -->
-<frame name="header" src="header.html">
-<!-- Create two vertical frames of 60% and 40% width -->
-    <frameset cols="60%,40%">
-    <!-- Load the input frame -->
-    <frame name="input" src="input.html">
-    <!-- Load the output frame -->
-    <frame name="output" src="output.php">
-    </frameset>
+<frameset rows="16%,84%">
+	<frame name="header" src="header.html">
+		<frameset cols="53%,47%">
+			<frame name="input" src="input.html">
+			<frame name="output" src="output.php">
+		</frameset>
 </frameset>
-
-
 </html>

+ 22 - 22
input.html

@@ -1,26 +1,26 @@
-<html>
+<!-- Code by Sunit Kumar Nandi -->
 
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+	<meta charset="utf-8" script=>
+	<link rel="stylesheet" type="text/css" href="./style.css">
+</head>
 <body>
-<!-- Specifying how the form data should be processed -->
-<form name="form1" method="post" target="output" action="output.php?saving=1">
-Write your program here:
-<br>
-<!-- Accepting program code -->
-<textarea name="data" cols="80" rows="10">
-</textarea>
-<br><br><br>
-<!-- Accepting standard input -->
-Standard input: <input type="text" name="stdin">
-<br><br>
-<!-- Accepting command-line agruments -->
-Command line arguments: <input type="text" name="args">
-<br><br>
-<!-- Submit button goes here -->
-<input type="submit" value="Run">
-</form>
-<br>
-<!-- Provide a link to text input option -->
-<a href="textinput.php" target="output">Click here to submit text file input</a>
+	<form name="form1" method="post" target="output" action="output.php?saving=1">
+		<br/><br/>
+		<textarea name="data" cols="80" rows="10" placeholder="Write your program here" spellcheck="false"></textarea>
+		<br/><br/><br/>
+		<input type="text" name="stdin" autocomplete="on" placeholder="Standard input" wrap="hard">
+		<br/><br/>
+		<input type="text" name="args" autocomplete="on" placeholder="Command-line arguments">
+		<br/><hr/><br/>
+		<button type="submit"> &#9654; Run</button>
+		<div style="padding:30px;"><a href="#" class="button">&#9654; Run</a></div>
+	</form>
+	<br/>
+	<br/>
+	<a href="textinput.php" target="output">Click here to submit text file input</a>
 </body>
-
 </html>

+ 77 - 0
style.css

@@ -0,0 +1,77 @@
+/* 
+
+Stylesheet by Akshit Tripathi 
+Fonts by Google Fonts
+Thanks Bootstrap for some code.
+
+*/
+
+@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:400|Alegreya+Sans+SC:800);
+body {
+	background-color: #FFFAFA;
+	margin: 0;
+	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+textarea {
+	font-family: "Source Code Pro", sans-serif;
+	color: #272822;
+	background-color: #FFFFFF;
+	resize: none;
+	border: solid;
+	border-width: 1px;
+}
+
+p {
+	color: rgba(0, 0, 0, 0.5);
+	font-family: "Helvetica Neue";
+	font-weight: 400;
+	margin: 20px 0; 
+	line-height: 1.6;
+}
+
+button {
+	padding: 12px 48px;
+	font-family: "Alegreya Sans SC", sans-serif;
+	background: linear-gradient (to bottom, #616159 30%, #DEDEDE 70%);
+	color: rgba(0, 0, 0, 0.7);
+	font-size: 12pt;
+}
+
+input {
+	height: 24px;
+	border-radius: 5px;
+	border: solid;
+	border-width: 1px;
+	width: 300px;
+	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+input:hover {
+	border-color: #6496FF;
+}
+
+input[type=text], textarea {
+  -webkit-transition: all 0.30s ease-in-out;
+  -moz-transition: all 0.30s ease-in-out;
+  -ms-transition: all 0.30s ease-in-out;
+  -o-transition: all 0.30s ease-in-out;
+  outline: none;
+  padding: 3px 0px 3px 3px;
+  margin: 5px 1px 3px 0px;
+  border: 1px solid #DDDDDD;
+}
+ 
+input[type=text]:focus, textarea:focus {
+  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
+  padding: 3px 0px 3px 3px;
+  margin: 5px 1px 3px 0px;
+  border: 1px solid rgba(81, 203, 238, 1);
+}
+
+button:hover {
+	padding: 13px 72px;
+	font-family: "Alegreya Sans SC", sans-serif;
+	background: linear-gradient (to bottom, #EDEDED 70%, #DEDEDE 30%);
+	color: rgb(0, 0, 0);
+}