Skip to content

Commit

Permalink
Rounded edges on pre-code
Browse files Browse the repository at this point in the history
  • Loading branch information
aristotlemanolakos committed Nov 28, 2016
1 parent e97ecc5 commit ccb2216
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -19,7 +19,7 @@ If a new directory is made, make sure to include path.

##End Notes

#### Future Releases
#### Future Builds
+ Option to quick-install popular frontend frameworks like [Bootstrap](http://getbootstrap.com/), [Bulma](http://bulma.io/), [Miligram](https://milligram.github.io/), [Skeleton](http://getskeleton.com/), [Pure](http://purecss.io/), [Semantic UI](http://semantic-ui.com/), [Materialize](http://materializecss.com/)
+ Templates of common types of websites and boilerplate code snippets
+ Local server for static website development
Expand Down
4 changes: 2 additions & 2 deletions totl-landing-page/index.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>totl-landing-page</title>
<title>Totl</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style/style.css">
Expand All @@ -11,7 +11,7 @@

<body>
<div id="app">
<h1 style="padding-top: 0;margin-top: 0">Totl is a quick script that makes basic website templates 📝</h1>
<h1 style="padding-top: 0;margin-top: 0">Totl is a quick Bash script that makes basic website templates 📝</h1>
<img src="example.gif" alt="">

<h2><a href="#">⚡ Install</a></h2>
Expand Down
14 changes: 6 additions & 8 deletions totl-landing-page/style/style.css
Expand Up @@ -2,7 +2,7 @@

body{
margin: 0 auto;
max-width: 35em;
max-width: 32em;
font-family: 'Roboto', 'Helvetica', sans-serif;
//background-color: #E65069;
//background-color: #8CC084;
Expand All @@ -15,15 +15,13 @@ body{
background: #ff7e5f; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff7e5f , #feb47b); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff7e5f , #feb47b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

img{
max-width:100%;
max-height:100%;
margin-top: 1em;
border-radius: .4em;
border-radius: .8em;
}

h1{
Expand Down Expand Up @@ -84,14 +82,14 @@ pre{
background: rgba(0,0,0,0.3);
color: #fff;
padding: 3px 8px;
border-radius: 0.4em;
-moz-border-radius: 0.4em;
-webkit-border-radius: 0.4em;
border-radius: 0.8em;
//-moz-border-radius: 0.4em;
//-webkit-border-radius: 0.4em;
overflow-x: auto;
//margin-top: 1em;
margin-bottom: .4em;
display: inline-block;
max-width:100%;
max-width:95%;
//max-height:100%;
}

Expand Down

0 comments on commit ccb2216

Please sign in to comment.