Toshaan Bharvani
7 years ago
24 changed files with 13351 additions and 0 deletions
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
--- |
||||
title: "{{ replace .Name "-" " " | title }}" |
||||
date: {{ .Date }} |
||||
draft: true |
||||
--- |
||||
|
@ -0,0 +1,39 @@
@@ -0,0 +1,39 @@
|
||||
### config.toml |
||||
title = "PowerEL" |
||||
baseURL = "https://www.powerel.org/" |
||||
theme = "pel" |
||||
languageCode = "en-us" |
||||
dataDir = "data" |
||||
PaginatePath = "blog" |
||||
sectionPagesMenu = "main" |
||||
buildDrafts = false |
||||
pygmentsUseClasses = true |
||||
enableGitInfo = true |
||||
enableRobotsTXT = true |
||||
|
||||
### navbar |
||||
[[menu.navbar]] |
||||
name = "Home" |
||||
identifier = "home" |
||||
url = "/" |
||||
weight = -1000 |
||||
[[menu.navbar]] |
||||
name = "About" |
||||
identifier = "about" |
||||
url = "/about/" |
||||
weight = -900 |
||||
[[menu.navbar]] |
||||
name = "Get PEL" |
||||
identifier = "download" |
||||
url = "/download/" |
||||
weight = -800 |
||||
[[menu.navbar]] |
||||
name = "Documentation" |
||||
identifier = "docs" |
||||
url = "https://docs.powerel.org" |
||||
weight = -700 |
||||
[[menu.navbar]] |
||||
name = "Bugs" |
||||
identifier = "bugs" |
||||
url = "https://bugzilla.powerel.org/" |
||||
weight = -600 |
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
--- |
||||
title: "About" |
||||
date: 2018-06-24 |
||||
draft: false |
||||
--- |
||||
|
||||
## History ## |
||||
|
||||
PowerEL stands for Power Enterprise Linux, it originates from a requirement to have a fully free open source distribution for the IBM POWER platform. |
||||
The distribution takes it's origin from Enterprise Linux from Red Hat, CentOS, Oracle Linux, and some Fedora and SuSE features. |
||||
While currently CentOS is available on for Power8, it doesn't have an optimized version and if follows the RHEL features wich are limited. |
||||
In making PowerEL more usable, an Intel CPU optimized version is also available. |
||||
|
||||
PowerEL uses the distro tag __pel__ and uses the same ABI as the rhel based systems, so you can use existing binaries on PowerEL. |
||||
PowerEL is a optimized version with specific cpu architecture optimzed compiled packages, so it only works on cpu's with at least this set of features available. |
||||
|
||||
|
||||
## Architectures ## |
||||
|
||||
PowerEL supports specific CPU architectures with specific feature requirements. |
||||
|
||||
- IBM Power8 Big Endian : __ppc64__ |
||||
- IBM Power8 Little Endian : __ppc64le__ |
||||
- Intel Xeon/i9/i7/i5/i3 with AVX support : __x86_64__ |
||||
|
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
--- |
||||
title: "Download" |
||||
date: 2018-07-03 |
||||
draft: false |
||||
--- |
||||
|
||||
## Tree Download ## |
||||
|
||||
You can find the installation tree on one of the following sites. |
||||
These files can be used to install you system or to create your own installation system sutch PXE or USB installers |
||||
|
||||
|
||||
You can download the installation tree from on of the following mirrors : |
||||
|
||||
- IBM POWER8 Big Endian ppc64 : [https://yum0.powerel.org/powerel8/ppc64/iso](https://yum0.powerel.org/power8/ppc64/so) |
||||
- IBM POWER8 Little Endian ppc64le : [https://yum0.powerel.org/power8/ppc64le/iso](https://yum0.powerel.org/power8/ppc64le/so) |
||||
- Intel AVX x86_64 : [https://yum0.powerel.org/intelavx/x86_64/iso](https://yum0.powerel.org/intelavx/x86_64/iso) |
||||
|
||||
|
||||
|
||||
## ISO downloads ## |
||||
|
||||
The ISO is a CD image from the installation tree that you can use to install PowerEL on you machine. |
||||
The ISO images are made from the above installation tree, however they lags behind the latest installation tree version. |
||||
|
||||
|
||||
You can download the iso file for your architecture from one of the iso mirrors : |
||||
|
||||
- IBM POWER8 Big Endian ppc64 : [https://yum0.powerel.org/powerel8/x86_64/iso](https://yum0.powerel.org/intelavx/x86_64/iso) |
||||
- IBM POWER8 Little Endian ppc64le : [https://yum0.powerel.org/power8/ppc64le/iso](https://yum0.powerel.org/intelavx/x86_64/iso) |
||||
- Intel AVX x86_64 : [https://yum0.powerel.org/intelavx/x86_64/iso](https://yum0.powerel.org/intelavx/x86_64/iso) |
||||
|
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
The MIT License (MIT) |
||||
|
||||
Copyright (c) 2018 YOUR_NAME_HERE |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
||||
this software and associated documentation files (the "Software"), to deal in |
||||
the Software without restriction, including without limitation the rights to |
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
||||
the Software, and to permit persons to whom the Software is furnished to do so, |
||||
subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in all |
||||
copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
<html> |
||||
{{- partial "head.html" . -}} |
||||
<body> |
||||
{{- partial "header.html" . -}} |
||||
<div id="content"> |
||||
{{- block "main" . }}{{- end }} |
||||
</div> |
||||
{{- partial "footer.html" . -}} |
||||
</body> |
||||
</html> |
@ -0,0 +1,28 @@
@@ -0,0 +1,28 @@
|
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ partial "navbar.html" . }} |
||||
|
||||
<main id="main"> |
||||
|
||||
<section id="page" class="section-bg"> |
||||
<div class="container-fluid"> |
||||
<div class="section-header"> |
||||
<h2 class="section-title">{{ .Title }}</h2> |
||||
<span class="section-divider"></span> |
||||
<p class="section-description"></p> |
||||
</div> |
||||
<div class="section-page"> |
||||
<div class="row"> |
||||
<div class="col-lg-2"> </div> |
||||
<div class="col-lg-8 content wow fadeInRight"> |
||||
<p>{{ .Content }}</p> |
||||
</div> |
||||
<div class="col-lg-2"> </div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</section> |
||||
|
||||
</main> |
||||
|
||||
{{ partial "footer.html" . }} |
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ partial "navbar.html" . }} |
||||
|
||||
<main id="main"> |
||||
|
||||
<section id="page" class="section-bg"> |
||||
<div class="container-fluid"> |
||||
<div class="section-header"> |
||||
<h3 class="section-title">{{ .Title }}</h3> |
||||
<span class="section-divider"></span> |
||||
<p class="section-description"></p> |
||||
</div> |
||||
<div class="row"> |
||||
<div class="col-lg-6 content wow fadeInLeft"> |
||||
<p>{{ if .Param "image" }}<img src="/img/{{ .Param "image" }}">{{ else }} {{ end }}</p> |
||||
</div> |
||||
<div class="col-lg-6 content wow fadeInRight"> |
||||
<p>{{ .Content }}</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</section> |
||||
|
||||
{{ partial "footer.html" . }} |
@ -0,0 +1,7 @@
@@ -0,0 +1,7 @@
|
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ partial "navbar.html" . }} |
||||
|
||||
{{ partial "intro.html" . }} |
||||
|
||||
{{ partial "footer.html" . }} |
@ -0,0 +1,124 @@
@@ -0,0 +1,124 @@
|
||||
<footer> |
||||
<div class="footer_section"> |
||||
<div class="container"> |
||||
<div class="footer_bottom"> |
||||
<span> |
||||
PowerEL is a free open source linux based distribution without any warranty.<br> |
||||
All trademarks are of their respective owners.<br> |
||||
</span> |
||||
<div class="credits"> |
||||
Website build and hosted by <a href="https://www.vantosh.com/">VanTosh</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</footer> |
||||
|
||||
<script type="text/javascript"> |
||||
$(document).ready(function(e) { |
||||
$('#header_outer').scrollToFixed(); |
||||
$('.res-nav_click').click(function() { |
||||
$('.main-nav').slideToggle(); |
||||
return false |
||||
}); |
||||
}); |
||||
</script> |
||||
|
||||
<script> |
||||
wow = new WOW({ |
||||
animateClass: 'animated', |
||||
offset: 100 |
||||
}); |
||||
wow.init(); |
||||
document.getElementById('').onclick = function() { |
||||
var section = document.createElement('section'); |
||||
section.className = 'wow fadeInDown'; |
||||
section.className = 'wow shake'; |
||||
section.className = 'wow zoomIn'; |
||||
section.className = 'wow lightSpeedIn'; |
||||
this.parentNode.insertBefore(section, this); |
||||
}; |
||||
</script> |
||||
|
||||
<script type="text/javascript"> |
||||
$(window).load(function() { |
||||
$('a').bind('click', function(event) { |
||||
var $anchor = $(this); |
||||
$('html, body').stop().animate({ |
||||
scrollTop: $($anchor.attr('href')).offset().top - 91 |
||||
}, 1500, 'easeInOutExpo'); |
||||
/* |
||||
if you don't want to use the easing effects: |
||||
$('html, body').stop().animate({ |
||||
scrollTop: $($anchor.attr('href')).offset().top |
||||
}, 1000); |
||||
*/ |
||||
event.preventDefault(); |
||||
}); |
||||
}) |
||||
</script> |
||||
|
||||
<script type="text/javascript"> |
||||
jQuery(document).ready(function($) { |
||||
var container = $('#portfolio-wrap'); |
||||
container.isotope({ |
||||
animationEngine: 'best-available', |
||||
animationOptions: { |
||||
duration: 200, |
||||
queue: false |
||||
}, |
||||
layoutMode: 'fitRows' |
||||
}); |
||||
$('#filters a').click(function() { |
||||
$('#filters a').removeClass('active'); |
||||
$(this).addClass('active'); |
||||
var selector = $(this).attr('data-filter'); |
||||
container.isotope({ |
||||
filter: selector |
||||
}); |
||||
setProjects(); |
||||
return false; |
||||
}); |
||||
function splitColumns() { |
||||
var winWidth = $(window).width(), |
||||
columnNumb = 1; |
||||
if (winWidth > 1024) { |
||||
columnNumb = 4; |
||||
} else if (winWidth > 900) { |
||||
columnNumb = 2; |
||||
} else if (winWidth > 479) { |
||||
columnNumb = 2; |
||||
} else if (winWidth < 479) { |
||||
columnNumb = 1; |
||||
} |
||||
return columnNumb; |
||||
} |
||||
function setColumns() { |
||||
var winWidth = $(window).width(), |
||||
columnNumb = splitColumns(), |
||||
postWidth = Math.floor(winWidth / columnNumb); |
||||
container.find('.portfolio-item').each(function() { |
||||
$(this).css({ |
||||
width: postWidth + 'px' |
||||
}); |
||||
}); |
||||
} |
||||
function setProjects() { |
||||
setColumns(); |
||||
container.isotope('reLayout'); |
||||
} |
||||
container.imagesLoaded(function() { |
||||
setColumns(); |
||||
}); |
||||
$(window).bind('resize', function() { |
||||
setProjects(); |
||||
}); |
||||
}); |
||||
$(window).load(function() { |
||||
jQuery('#all').click(); |
||||
return false; |
||||
}); |
||||
</script> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,49 @@
@@ -0,0 +1,49 @@
|
||||
<!doctype html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta name="viewport" content="width=device-width, maximum-scale=1"> |
||||
<title>PowerEL - Enterprise Linux distribution for Power users</title> |
||||
<link rel="icon" href="favicon.png" type="image/png"> |
||||
<link href="{{ "css/bootstrap.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href="{{ "css/style.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href="{{ "css/linecons.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href="{{ "css/font-awesome.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href="{{ "css/responsive.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href="{{ "css/animate.css" | relURL }}" rel="stylesheet" type="text/css"> |
||||
<link href='https://fonts.googleapis.com/css?family=Lato:400,900,700,700italic,400italic,300italic,300,100italic,100,900italic' rel='stylesheet' type='text/css'> |
||||
<link href='https://fonts.googleapis.com/css?family=Dosis:400,500,700,800,600,300,200' rel='stylesheet' type='text/css'> |
||||
<script src="{{ "js/jquery.1.8.3.min.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/bootstrap.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/jquery-scrolltofixed.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/jquery.easing.1.3.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/jquery.isotope.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/wow.js" | relURL }}" type="text/javascript"></script> |
||||
<script src="{{ "js/classie.js" | relURL }}" type="text/javascript"></script> |
||||
<script type="text/javascript"> |
||||
$(document).ready(function(e) { |
||||
$('.res-nav_click').click(function() { |
||||
$('ul.toggle').slideToggle(600) |
||||
}); |
||||
$(document).ready(function() { |
||||
$(window).bind('scroll', function() { |
||||
if ($(window).scrollTop() > 0) { |
||||
$('#header_outer').addClass('fixed'); |
||||
} else { |
||||
$('#header_outer').removeClass('fixed'); |
||||
} |
||||
}); |
||||
}); |
||||
}); |
||||
function resizeText() { |
||||
var preferredWidth = 767; |
||||
var displayWidth = window.innerWidth; |
||||
var percentage = displayWidth / preferredWidth; |
||||
var fontsizetitle = 25; |
||||
var newFontSizeTitle = Math.floor(fontsizetitle * percentage); |
||||
$(".divclass").css("font-size", newFontSizeTitle) |
||||
} |
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
<div> |
||||
</div> |
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
<header id="header_outer"> |
||||
<div class="container"> |
||||
<div class="header_section"> |
||||
<div class="logo"> |
||||
<a href="/">PowerEL</a> |
||||
</div> |
||||
<nav class="nav" id="nav"> |
||||
<ul class="toggle"> |
||||
{{ range .Site.Menus.navbar }} |
||||
<li><a href="{{ .URL }}">{{ .Name }}</a></li> |
||||
{{ end }} |
||||
</ul> |
||||
<ul class=""> |
||||
{{ range .Site.Menus.navbar }} |
||||
<li><a href="{{ .URL }}">{{ .Name }}</a></li> |
||||
{{ end }} |
||||
</ul> |
||||
</nav> |
||||
<a class="res-nav_click animated wobble wow" href="javascript:void(0)"><i class="fa-bars"></i></a> |
||||
</div> |
||||
</div> |
||||
</header> |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,85 @@
@@ -0,0 +1,85 @@
|
||||
/* |
||||
Animation example, for spinners |
||||
*/ |
||||
.animate-spin { |
||||
-moz-animation: spin 2s infinite linear; |
||||
-o-animation: spin 2s infinite linear; |
||||
-webkit-animation: spin 2s infinite linear; |
||||
animation: spin 2s infinite linear; |
||||
display: inline-block; |
||||
} |
||||
@-moz-keyframes spin { |
||||
0% { |
||||
-moz-transform: rotate(0deg); |
||||
-o-transform: rotate(0deg); |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
100% { |
||||
-moz-transform: rotate(359deg); |
||||
-o-transform: rotate(359deg); |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
||||
@-webkit-keyframes spin { |
||||
0% { |
||||
-moz-transform: rotate(0deg); |
||||
-o-transform: rotate(0deg); |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
100% { |
||||
-moz-transform: rotate(359deg); |
||||
-o-transform: rotate(359deg); |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
||||
@-o-keyframes spin { |
||||
0% { |
||||
-moz-transform: rotate(0deg); |
||||
-o-transform: rotate(0deg); |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
100% { |
||||
-moz-transform: rotate(359deg); |
||||
-o-transform: rotate(359deg); |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
||||
@-ms-keyframes spin { |
||||
0% { |
||||
-moz-transform: rotate(0deg); |
||||
-o-transform: rotate(0deg); |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
100% { |
||||
-moz-transform: rotate(359deg); |
||||
-o-transform: rotate(359deg); |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
||||
@keyframes spin { |
||||
0% { |
||||
-moz-transform: rotate(0deg); |
||||
-o-transform: rotate(0deg); |
||||
-webkit-transform: rotate(0deg); |
||||
transform: rotate(0deg); |
||||
} |
||||
|
||||
100% { |
||||
-moz-transform: rotate(359deg); |
||||
-o-transform: rotate(359deg); |
||||
-webkit-transform: rotate(359deg); |
||||
transform: rotate(359deg); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,176 @@
@@ -0,0 +1,176 @@
|
||||
/* ========================================================================== |
||||
Media Queries |
||||
========================================================================== */ |
||||
|
||||
@media only screen and (max-width: 1380px) { |
||||
|
||||
} |
||||
@media only screen and (min-width: 980px) and (max-width: 1200px) { |
||||
.portfolioContainer { margin:0px auto;} |
||||
#work_outer{ background-size:450px; padding:40px 0px; background-position:right 230px; } |
||||
.top_cont_inner{ background-size:400px;} |
||||
|
||||
.top_cont_latest{ background-size:500px;} |
||||
} |
||||
|
||||
@media only screen and (min-width: 768px) and (max-width: 991px) { |
||||
/****Ipad Portrait 768 Container 750 ****/ |
||||
body{ font-size:13px;} |
||||
p{ line-height:20px ;} |
||||
.header h1{ font-size:46px;} |
||||
.main-nav ul li a{ padding:14px;} |
||||
.small-logo{ padding:0 20px;} |
||||
h2{ font-size:30px} |
||||
h6{ font-size:16px;} |
||||
h3{ font-size:15px;} |
||||
.service-list{ margin-bottom:20px; font-size:15px;} |
||||
.featured-work p.padding-b{ padding-bottom:15px;} |
||||
.main-section{ padding:70px 0;} |
||||
.c-logo-part ul li{ margin:0 1%; float:left; width:18%;} |
||||
.c-logo-part ul li a{ display:block;} |
||||
.c-logo-part ul li a img{ display:block;} |
||||
.form{ margin:0;} |
||||
.contact-info-box{ margin:0 ;} |
||||
.social-link{ margin:0;} |
||||
|
||||
.main-nav{ display:block !important; } |
||||
.main-nav li a{ padding:8px 15px;} |
||||
.top_cont_inner{ background-size:327px;} |
||||
|
||||
.top_cont_latest{ background-size:327px;} |
||||
.top_left_cont { padding:30px 0;} |
||||
.top_left_cont h2{ font-size:24px;} |
||||
.service_block{ margin:0 0 35px 0;} |
||||
#service{ padding:40px 0px;} |
||||
.service_area{ padding:40px 0px;} |
||||
#work_outer{ background-size:350px; padding:40px 0px; background-position:right 130px; } |
||||
.work_section{ padding:40px 0px;} |
||||
#client_outer{ padding:45px 0px;} |
||||
.quote_section{ width:495px; margin: 6px 0 0 30px;} |
||||
.client_area{ width:700px;} |
||||
.client_profile_pic{ width:150px; height:150px;} |
||||
.quote_section.flt{ margin:6px 0 0 0;} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
||||
|
||||
@media only screen and (max-width: 767px) { |
||||
/****Mobile Landscape 480 Container 100% ****/ |
||||
.client_profile_pic{ float:none; width:150px; height:150px; margin:0px auto;} |
||||
#client_outer{ padding:25px 0px;} |
||||
.client_profile.flt{ float:none;} |
||||
.c-logo-part ul li{ margin:0 6px;} |
||||
.c-logo-part ul a{ width:100px;} |
||||
.client_profile{ float:none; margin:0 0 20px 0;} |
||||
.client_area{ width:436px;} |
||||
.quote_section{ width:auto; float:none;} |
||||
.service_area{ padding:25px 0px;} |
||||
.service_block{ margin:0 0 20px 0;} |
||||
#service{ padding:20px 0px;} |
||||
.work_section{ padding:25px 0px;} |
||||
#work_outer{background:none; padding:25px 0px; } |
||||
.top_cont_inner{background-size: 90% auto; -webkit-background-size: 90% auto;padding-bottom: 68%;} |
||||
|
||||
.top_cont_latest{background-size: 90% auto; -webkit-background-size: 90% auto;padding-bottom: 68%;} |
||||
.top_left_cont { padding: 10% 0;} |
||||
.top_left_cont h2{ font-size:29px;} |
||||
body{ font-size:12px;} |
||||
h2{ font-size:26px;} |
||||
h3{ font-size:14px;} |
||||
h6{ font-size:16px; margin-bottom:40px;} |
||||
p{ line-height:18px;} |
||||
.service-list{ font-size:12px; margin-bottom:20px;} |
||||
.we-create li{ font-size:13px; padding:0 0 0 8px} |
||||
.header h1{ font-size:28px;} |
||||
.header{ padding:60px 0;} |
||||
.main-section{ padding:60px 0 70px;} |
||||
.main-nav{ display:none; position:absolute; left:0; width:100%; top:74px; margin:0 auto; flote : none; background:#fff;} |
||||
.main-nav li{ display:block;} |
||||
.main-nav li.small-logo{ display:none;} |
||||
.main-nav li a{ display:block; padding:7px 32px; border-bottom:none;} |
||||
.main-nav li a:hover{color:#7cc576} |
||||
.team-leader-box{ max-width:307px; width:auto; float:none; margin:0 auto; } |
||||
.team-leader-box:nth-of-type(3n){ margin:0 auto} |
||||
.res-nav_click{ display:block;} |
||||
.featured-work{ font-size:12px; margin-top:30px;} |
||||
.featured-box{ font-size:12px;} |
||||
.featured-box p{ line-height:18px; } |
||||
.c-logo-part ul a{ margin-bottom:5px;} |
||||
.main-section.team{ padding:60px 0 50px;} |
||||
.business-talking h2{ font-size:36px;} |
||||
.contact-info-box{ margin:0 0 12px 30px; font-size:12px;} |
||||
.contact-info-box span{ line-height:18px;} |
||||
.social-link{ margin-left:30px;} |
||||
.form{ margin:0 30px;} |
||||
.copyright{ font-size:12px;} |
||||
.business-talking a{ padding:10px 25px; font-size:14px;} |
||||
.main-section.contact{ padding:60px 0 70px} |
||||
.client-part-haead{ font-size:20px; line-height:30px;} |
||||
.link{ font-size:14px; padding:10px 25px;} |
||||
.logo{ width:100px;} |
||||
.main-section.contact{ background-size:contain;} |
||||
.Portfolio-nav li a{ padding:5px 16px;} |
||||
.Portfolio-nav li{ display:block;} |
||||
/*.isotope-item img{ width:300px; left:50%; margin-left:-100px;} |
||||
.isotope-item{ width:300px; margin:0px auto;} |
||||
.isotope{ width:400px; margin:0px auto;} |
||||
.Portfolio-box{} |
||||
.portfolioContainer{ width:350px; margin:0px auto !important; } */ |
||||
|
||||
.portfolioContainer { max-width:350px; margin:0px auto;} |
||||
.logo{ margin:0px auto 10px; float:none; } |
||||
.nav{ float:none; position:absolute; width:100%; top: 73px;} |
||||
|
||||
toggle.ul{ background:#fff; width:100%;} |
||||
.nav ul li{ border-bottom:1px solid #CCC; display:block; float:none; width:100%; margin:0px; text-align:center;} |
||||
.nav ul li a{ padding:6px 0px} |
||||
.res-nav_click{ |
||||
bottom: -42px; |
||||
display: block; |
||||
font-size: 25px; |
||||
left: 48%; |
||||
position: absolute; |
||||
} |
||||
.res-nav_click a{ text-decoration:none;} |
||||
.res-nav_click a:hover{ text-decoration:none; color:#060;} |
||||
.nav ul{ background:#fff; display:none;} |
||||
|
||||
.nav ul.toggle{ |
||||
display:none; |
||||
visibility:visible; |
||||
height:auto; |
||||
overflow:auto; |
||||
} |
||||
|
||||
.work_pic { |
||||
position: relative; |
||||
right: 0; |
||||
top: auto; |
||||
width: 90%; |
||||
margin-left: 10%; |
||||
} |
||||
|
||||
} |
||||
|
||||
@media only screen and (max-width: 479px) { |
||||
/****Mobile Portrait 320 ****/ |
||||
#filters ul li{ display:block;} |
||||
.contact-info-box{ margin-left:0px;} |
||||
.header{ padding:40px;} |
||||
.social-link{ margin-left:0px;} |
||||
.form{ margin:0} |
||||
.c-logo-part ul li{ display:block;} |
||||
.Portfolio-box{ max-width:300px !important; width:96.4% !important; margin:0 !important} |
||||
.Portfolio-box img { max-width:100%;} |
||||
.portfolioContainer{ width:280px !important; margin:0 auto !important } |
||||
.top_left_cont h2{ font-size:20px;} |
||||
.client_area{ width:276px;} |
||||
.quote_section p{ font-size:15px;} |
||||
.c-logo-part{ padding:18px 0px;} |
||||
.c-logo-part ul li{ margin:6px 0px; display:block;} |
||||
|
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
# theme.toml template for a Hugo theme |
||||
# See https://github.com/gohugoio/hugoThemes#themetoml for an example |
||||
|
||||
name = "PowerEL" |
||||
license = "MIT" |
||||
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" |
||||
description = "" |
||||
homepage = "http://example.com/" |
||||
tags = [] |
||||
features = [] |
||||
min_version = "0.41" |
||||
|
||||
[author] |
||||
name = "" |
||||
homepage = "" |
||||
|
||||
# If porting an existing theme |
||||
[original] |
||||
name = "" |
||||
homepage = "" |
||||
repo = "" |
Loading…
Reference in new issue