This file contains hidden or 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
@mixin companyNameStyle ($anyColor){ | |
font-family: 'Noto Serif', serif; | |
float: left; | |
width: $companyNameWidth; | |
font-size: 45px; | |
letter-spacing: 2px; | |
color: $anyColor; | |
font-weight: bold; | |
text-align: right; | |
padding-right: 33px; |
This file contains hidden or 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
@mixin headerPhoneNumberStyle{ | |
float: left; | |
width: 575px; | |
margin-left: 15px; | |
position:relative; | |
top:-5px; | |
font-size:2.1em; | |
font-weight: bold; | |
letter-spacing: 2px; | |
color: $contentBackgroundCollor; |
This file contains hidden or 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
@mixin basicBoxStyle { | |
width: 100%; | |
overflow: auto; | |
position: relative; | |
} |
This file contains hidden or 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
<link href='http://fonts.googleapis.com/css?family=Noto+Serif' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'> | |
font-family: 'Noto Serif', serif; |
This file contains hidden or 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
@include box-shadow(#393939 0px 0px 1px) |
This file contains hidden or 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
<!doctype html> |
This file contains hidden or 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
<?php | |
echo $anyVar; | |
?> |
This file contains hidden or 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
public function addNews($title, $body) | |
{ | |
$arrInsertValues = array('title'=>$title, 'body'=>$body); | |
$success = $this->db->insert('news', $arrInsertValues); | |
return $success; | |
} |
This file contains hidden or 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
public function getAllNews() | |
{ | |
$query = $this->db->get('news'); | |
return $query->result(); | |
} |
This file contains hidden or 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
public function newsAddMethod() | |
{ | |
$newsTitle = $this->input->post('newsTitle'); | |
$newsBody = $this->input->post('newsBody'); | |
$success = $this->md_news->addNews($newsTitle, $newsBody); | |
if ($success){ | |
redirect('Legal-News-Chicago-North-Suburbs/Judicial-Important-Information'); | |
} |