-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
//@import "nib/index.styl" | ||
body | ||
font 12px Helvetica, Arial, sans-serif | ||
background-image url(http://www.mathovore.fr/wp-content/uploads/2014/07/calculatrice.jpg) | ||
background-size 70% | ||
background-repeat no-repeat | ||
|
||
input | ||
border-radius: 5px | ||
|
||
#result | ||
position relative | ||
left 240px | ||
top 25px | ||
color #ff0000 | ||
border-radius 15px | ||
background-color cornflowerblue | ||
font bold 30px verdana |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
doctype | ||
html | ||
head | ||
title #{title} - My Site | ||
link(rel='stylesheet', href='/stylus/style.css') | ||
script(src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js") | ||
script(src="ajax.js") | ||
|
||
body | ||
header | ||
h1 My calculator | ||
form(id="calculator",name="calculator") | ||
div | ||
input(type="text", name="Zonecalcul", id="Zonecalcul") | ||
input(type="submit", id="my_calc_submit", value="Show Result") | ||
div(id="result", name="result") | ||
|
||
footer | ||
p Running on node with Express, Jade |