function ssfa_add_custom_css()
{
    $ssfa_customcss = ssfa_customcss();
    if (!empty($ssfa_customcss)) {
        echo "\n<!-- File Away Custom CSS Begins -->\n<style type=\"text/css\">\n@import url('" . css_url() . "?" . filemtime(css_path()) . "');\n\n</style>\n<!-- File Away Custom CSS Concludes -->\n";
    }
}
function add_my_custom_css()
{
    $mycustomcss = mycustomcss();
    if (!empty($mycustomcss)) {
        // Write in source!
        echo "\n<!-- My Custom CSS Start -->\n<style type=\"text/css\">\n/* Plugin Author: Salvatore Noschese */\n@import url('" . css_url() . "?" . filemtime(css_path()) . "');\n/* Also known as: DarkWolf - http://www.darkwolf.it/ */\n</style>\n<!-- My Custom CSS End -->\n";
    }
}
Example #3
0
 public function css_push($e)
 {
     if ($this->css_url != '') {
         array_push($this->cssfiles, $this->css_url . $e . '.css');
     } else {
         array_push($this->cssfiles, css_url($e));
     }
 }
function mycustomcss_head()
{
    $mycustomcss = mycustomcss();
    if (!empty($mycustomcss)) {
        // Write in source!
        echo "\n<!-- My Custom CSS -->\n<link rel='stylesheet' id='mccss_stylesheet' href='" . css_url() . "?" . @filemtime(css_path()) . "' type='text/css' media='all' />\n<!-- My Custom CSS -->\n";
    }
}
Example #5
0
 public function ajouter_css($nom)
 {
     if (is_string($nom) and !empty($nom) and file_exists('./assets/css/' . $nom . '.css')) {
         $this->var['css'][] = css_url($nom);
         return true;
     }
     return false;
 }
function get_default_css()
{
    $css = array();
    $css[] = css_url('bootstrap.min');
    $css[] = plugin_asset_url('font-awesome/css/font-awesome.css');
    $css[] = css_url('sb-admin');
    return $css;
}
Example #7
0
 public function add_css($file_name)
 {
     if (is_string($file_name) and !empty($file_name)) {
         if (file_exists('./assets/css/' . $file_name) or file_exists('./assets/css/' . $file_name . '.css')) {
             $this->params['css'][] = css_url($file_name);
             return true;
         }
         return false;
     }
     return false;
 }
 /**
  * Generates a link tag
  *
  * @access  public
  * @param   string
  * @param   string
  * @return  string
  */
 function css($file = null, $media = false)
 {
     // Load functions_helper if not loaded
     if (!function_exists('css_url')) {
         _ci()->load->helper('functions');
     }
     if ($file) {
         $tag = '<link rel="stylesheet" type="text/css" href="' . css_url($file) . '"';
         if ($media) {
             $tag .= ' media="' . $media . '"';
         }
         $tag .= ' />';
         return $tag;
     }
     return false;
 }
Example #9
0
 public function updatetheme_select()
 {
     if ($this->input->post()) {
         $color = $this->input->post('color');
         $data['status'] = 1;
         $this->db->update('theme_select', array('status' => '0'));
         $this->db->where('color', $color);
         $this->db->update('theme_select', $data);
         $data['get_table'] = $this->db->get("theme_select");
         $data['color'] = $color;
         copy(css_url() . "/map_icons/map_pins_sprite_001.png", FCPATH . "images/map_icons/map_pins_sprite_001.png");
         copy(css_url() . "/logo/logo.png", FCPATH . "logo/logo.png");
         $this->recurse_copy(FCPATH . "css_" . $color . "/templates/blue/overwrite_images", FCPATH . "images/");
         $data['message'] = translate_admin("Updated Successfully");
         $data['message_element'] = "administrator/viewtheme_select";
         $this->load->view('administrator/admin_template', $data);
     } else {
         redirect(admin_url() . "/theme_select/viewtheme_select");
     }
 }
Example #10
0
<html>
<head>
  <link rel="icon" href="<?php 
echo img_url('favicon.jpg');
?>
">
  <title><?php 
echo $PAGE_TITLE;
?>
</title>
  <link rel="stylesheet" type="text/css" href="<?php 
echo css_url('prints.css');
?>
">
</head>
<body>
  <?php 
echo $CONTENT;
?>
  <script type="text/javascript" src="<?php 
echo js_url('jquery-1.11.3.min.js');
?>
"></script>
  <script type="text/javascript">
    $(function(){
      setTimeout(function(){
        window.print();
      }, 1);
      // setTimeout(function(){
      //   window.close();
      // }, 2);
Example #11
0
 function tagcss($nom, $media = 'screen')
 {
     return '<link rel="stylesheet" type="text/css" media="' . $media . '" href="' . css_url($nom) . '" />';
 }
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="">

    <title>選單維護</title>

    <!-- Bootstrap Core CSS -->
    <link href="<?php 
echo css_url("bootstrap.min.css");
?>
" rel="stylesheet">
    <link href="<?php 
echo css_url("maintain_menu/bootstrap-combined.min.css");
?>
" rel="stylesheet">
    <!-- jQuery -->
    <script src="<?php 
echo js_url("jquery2.0.2.js");
?>
"></script>
    <script src="<?php 
echo js_url("bootstrap.min.js");
?>
"></script>
    <script src="<?php 
echo js_url("public_program/classes.js");
?>
"></script>
Example #13
0
<!-- Required css stylesheets -->
<link href="<?php 
echo css_url() . '/dashboard.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<!-- End of stylesheet inclusion -->
<?php 
$this->load->view(THEME_FOLDER . '/includes/dash_header');
$this->load->view(THEME_FOLDER . '/includes/profile_header');
?>
<div id="dashboard_container" class="view_Reviews_Common">
    <div class="Box" id="View_Reviews">
        <div class="Box_Head msgbg">
            <h2><?php 
echo translate("Reviews & Recommendations");
?>
</h2>
        </div>
        <div class="Box_Content">
            <p><?php 
echo translate("Reviews are allowed only at the end of a trip booked through");
?>
 <?php 
echo $this->dx_auth->get_site_title();
?>
. </p>
            <p><?php 
echo translate("Recommendations are earned by inviting your friends to vouch for you.");
?>
 <a  href="<?php 
echo base_url() . 'users/recommendation';
Example #14
0
    <title>OCCI Sacramental Register</title>

    <!-- Core CSS - Include with every page -->
    <link href="<?php 
echo css_url('bootstrap.min');
?>
" rel="stylesheet">
    <link href="<?php 
echo plugin_asset_url('font-awesome/css/font-awesome.css');
?>
" rel="stylesheet">

    <!-- SB Admin CSS - Include with every page -->
    <link href="<?php 
echo css_url('sb-admin');
?>
" rel="stylesheet">

</head>

<body>

    <div class="container">
        <div class="row">
            <div class="col-md-4 col-md-offset-4">
                <div class="login-panel panel panel-default">
                    <div class="panel-heading">
                        <h3 class="panel-title">Please Sign In</h3>
                    </div>
                    <div class="panel-body">
Example #15
0
<link href="<?php 
echo css_url() . '/reservation.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<div class="container_bg clearfix" id="Conversation_Blk" >
    <div class="Convers_left clsFloatLeft">
        <div class="Box">

            <div class="Box_Content">
                <div class="clsConever_Bred">
                    <ul class="clearfix">
                        <li><a href="<?php 
echo site_url('message/inbox');
?>
"><?php 
echo translate("Inbox");
?>
</a></li>
                        <li><h3><?php 
echo translate("Conversation with");
?>
 <?php 
echo ucfirst($conv_userData->username);
?>
.</h3></li>
                    </ul>
                    <div style="clear:both"></div>
                </div>
                <div class="clsConver_Porfile_Blk clearfix">
                    <div class="clsConver_Pro_Img clsFloatLeft">
                        <a href="javascript:void(0);"><img height="68" width="68" src="<?php 
Example #16
0
		<meta name="description" content="<?php 
echo $title;
?>
" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<?php 
echo css_url('bootstrap.min');
?>
		<?php 
echo css_url('material-wfont.min');
?>
		<?php 
echo css_url('ripples.min');
?>
		<?php 
echo css_url('ekko-lightbox.min');
?>
	</head>
	<body class="container-fluid">

		<nav class="navbar navbar-default" role="navigation">

			<div class="navbar-header">
				<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
					<span class="sr-only">Toggle navigation</span>
					<span class="icon-bar"></span>
					<span class="icon-bar"></span>
					<span class="icon-bar"></span>
				</button><!-- end .navbar-toggle -->
				<a class="navbar-brand" href="<?php 
echo base_url('admin/content');
Example #17
0
<!--  Required external style sheets -->
<link href="<?php 
echo css_url() . '/dashboard.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<link href="<?php 
echo css_url() . '/popup.css';
?>
" media="screen" rel="stylesheet" type="text/css" />

<script>
    function is_read(id)
    {
        $.ajax({
            type: "POST",
            url: "<?php 
echo site_url('message/is_read');
?>
",
            async: true,
            data: "message_id=" + id
        });
    }

</script>
<!-- End of style sheet inclusion -->
<?php 
$this->load->view(THEME_FOLDER . '/includes/dash_header');
?>

<div id="dashboard_container" class="clearfix">
Example #18
0
 function css($file, $media = 'all')
 {
     return '<link rel="stylesheet" type="text/css" href="' . css_url() . $file . '" media="' . $media . '">' . "\n";
 }
Example #19
0
</title>
	<meta name='author' content='Michael Chan (https://github.com/waifung0207)'>
	<meta name='description' content='CI Bootstrap 3'>
	<?php 
echo $this->section('meta');
?>

	<?php 
// Stylesheets
?>
	<link href='<?php 
echo dist_url('app.min.css');
?>
' rel='stylesheet'>
	<link rel="stylesheet" type="text/css" href="<?php 
echo css_url('frontend.css');
?>
">
	<?php 
echo $this->section('styles');
?>

	<?php 
// Scripts at page start
?>
	<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
	<!--[if lt IE 9]>
		<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
		<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
	<![endif]-->
	<?php 
Example #20
0
?>
"><?php 
echo translate("Trust and Verification");
?>
</a>
</li>

</ul>


<link href="<?php 
echo css_url() . '/dashboard.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<link href="<?php 
echo css_url() . '/combine.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<style>
	.Box_Content h2{
		font-size:20px !important;}
		.Box_Content p{
			padding-left:10px;
		}
		.address-list{
			padding-left:6px;
		}
		.Box_Content h2 {
font-size: 20px !important;
line-height: 25px;
/* width: 100%; */
Example #21
0
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<link href="<?php 
echo css_url() . '/jquery_colorbox.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
<link href="<?php 
echo css_url() . '/search_result.css';
?>
" media="screen" rel="stylesheet" type="text/css" />

<style type="text/css">
    body { font: normal 10pt Helvetica, Arial; }
    #map { width: 350px; height: 300px; border: 0px; padding: 0px; }
</style>
<?php 
$this->session->set_userdata('checkin', '');
$this->session->set_userdata('checkout', '');
$this->session->set_userdata('no_of_guest', '');
?>

<?php 
$zz = 0;
?>

<script type="text/javascript">

    function show()
    {

        var location = document.getElementById('location').value;
        var dataString = "&location=" + location;
Example #22
0
  <link href="<?php 
echo css_url() . '/demo.css';
?>
" media="screen" rel="stylesheet" type="text/css" />
    <script>
$(document).ready(function() {
   $(window).scroll(function() {
       
       var headerH = $('#header').outerHeight(true);
  
       var scrollTopVal = $(this).scrollTop();
        if ( scrollTopVal > headerH ) {
            $('#sticky_nav').css({'position':'fixed','top' :'0px'});
        } else {
            $('#sticky_nav').css({'position':'static','top':'0px'});
        }
     
    });
 });
</script>
   <style>
	.saved_neighbor {
    background: -moz-linear-gradient(center top , #eb3c44, #d62f34) repeat scroll 0 0 transparent;
    border: 2px solid #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    color: #FFFFFF;
    font-size: 11px;
    padding: 0 5px 1px;
    position: relative;
	margin-left:3px;
}
Example #23
0
 /**
  * Build The Template
  * 
  * @param string $view
  * @param array $data
  * @param boolean $output Return the output?
  */
 public function build($view, $data = array(), $output = FALSE)
 {
     $template_data = array();
     // Create Page Title.
     $template_data['base_title'] = $this->base_title;
     $template_data['title'] = $this->base_title;
     if (!empty($this->title)) {
         $template_data['title'] = $this->title . $this->title_separator . $template_data['title'];
     }
     // Create Meta tags data.
     $template_data['metas'] = "\r\n";
     foreach ($this->metas as $metaname => $metavalue) {
         $template_data['metas'] .= "\t\t<meta {$metavalue['key']}=\"{$metaname}\" content=\"{$metavalue['content']}\" />\r\n";
     }
     // Create CSS tags data.
     $template_data['css'] = "\r\n";
     foreach ($this->css as $key => $value) {
         $style = '';
         if (isset($value['style'])) {
             $style = $value['style'];
             unset($value['style']);
         }
         $attr = 'rel="stylesheet" ';
         foreach ($value as $attrname => $attrvalue) {
             $attr .= $attrname . '="' . $attrvalue . '" ';
         }
         if (!empty($style)) {
             $template_data['css'] .= "\t\t<style>\r\n" . $style . "\r\n\t\t</style>\r\n";
         } else {
             if (preg_match('!^\\w+://! i', $key)) {
                 if (!preg_match("/\\.css\$/i", $key)) {
                     $key .= '.css';
                 }
                 $template_data['css'] .= "\t\t<link href=\"{$key}\" {$attr}/>\r\n";
             } else {
                 $template_data['css'] .= "\t\t<link href=\"" . css_url($key) . "\" {$attr}/>\r\n";
             }
         }
     }
     // Create Javascript header file tags data.
     $template_data['js_header'] = "\r\n";
     foreach ($this->js_header as $key => $value) {
         if ($key == $value) {
             if (preg_match('!^\\w+://! i', $key)) {
                 if (!preg_match("/\\.js\$/i", $key)) {
                     $key .= '.js';
                 }
                 $template_data['js_header'] .= "\t\t<script src=\"{$key}\"></script>\r\n";
             } else {
                 $template_data['js_header'] .= "\t\t<script src=\"" . js_url($key) . "\"></script>\r\n";
             }
         } else {
             $template_data['js_header'] .= "\t\t<script>\r\n" . $value . "\r\n</script>\r\n";
         }
     }
     // Create Javascript footer file tags data.
     $template_data['js_footer'] = "\r\n";
     foreach ($this->js_footer as $key => $value) {
         if ($key == $value) {
             if (preg_match('!^\\w+://! i', $key)) {
                 if (!preg_match("/\\.js\$/i", $key)) {
                     $key .= '.js';
                 }
                 $template_data['js_footer'] .= "\t\t<script src=\"{$key}\"></script>\r\n";
             } else {
                 $template_data['js_footer'] .= "\t\t<script src=\"" . js_url($key) . "\"></script>\r\n";
             }
         } else {
             $template_data['js_footer'] .= "\t\t<script>\r\n" . $value . "\r\n</script>\r\n";
         }
     }
     // Add messages.
     $this->prepare_messages();
     $template_data['messages'] = $this->get_messages();
     // Add partials.
     $template_data['partials'] = $this->partials;
     // Save to view variable.
     $data['template'] = $template_data;
     // Load content view.
     $data['template']['content'] = $this->ci->load->view($view, $data, TRUE);
     // Apply content to layout.
     return $this->ci->load->view($this->layout_path . '/' . $this->layout, $data, $output);
 }
Example #24
0
    <!-- Bootstrap Core CSS -->
    <link href="<?php 
echo bower_url('bootstrap/dist/css/bootstrap.min.css');
?>
" rel="stylesheet">
	
    <!-- MetisMenu CSS -->
    <link href="<?php 
echo bower_url('metisMenu/dist/metisMenu.min.css');
?>
" rel="stylesheet">
	
    <!-- Custom CSS -->
    <link href="<?php 
echo css_url('sb-admin-2');
?>
" rel="stylesheet">

    <!-- Custom Fonts -->
    <link href="<?php 
echo bower_url('font-awesome/css/font-awesome.css');
?>
" rel="stylesheet">
	
    <?php 
echo $template['css'];
?>

    <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
Example #25
0
<link href="<?php 
echo css_url();
?>
/accordion_toggle.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?php 
echo js_url();
?>
/combine.php"></script>
<script type="text/javascript">

    //
    //  In my case I want to load them onload, this is how you do it!
    // 
    Event.observe(window, 'load', loadAccordions, false);

    //
    //	Set up all accordions
    //
    function loadAccordions() {
        var topAccordion = new accordion('horizontal_container', {
            classNames: {
                toggle: 'horizontal_accordion_toggle',
                toggleActive: 'horizontal_accordion_toggle_active',
                content: 'horizontal_accordion_content'
            },
            defaultSize: {
                width: 525
            },
            direction: 'horizontal'
        });
Example #26
0
       <div id="imgb">
          <!-- Start Formoid form-->
          </ br> </ br></ br> 

        <?php 
echo img('congrat.jpg', 'Accueil');
?>
         
      </div>

      <div id="imgc">
            <footer>
             @copyright labosoft contact:<a href="mailto:contact@namcredit.com">contact@namcreit.com</a> Tel:(0033) 6 88 91 92 15

            </footer>
      </div>
  </div>

     <link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo css_url('style');
?>
" /> <!-- inclusion du fichier css --> 
     <link rel="stylesheet" type="text/css" media="screen" href="<?php 
echo css_url('des');
?>
" /> <!-- inclusion du fichier css --> 
           
</body>

</html>
Example #27
0
    <link rel="apple-touch-icon-precomposed" href="<?php 
echo images_url("icons/apple-touch-icon-57-precomposed.png?v=" . STATIC_CONTENT_VERSION);
?>
">
    
    
    <link href="<?php 
echo third_party_url("bootstrap/css/bootstrap.min.css?v=" . STATIC_CONTENT_VERSION);
?>
" rel="stylesheet">
    <link href="<?php 
echo css_url("shared.min.css?v=" . STATIC_CONTENT_VERSION);
?>
" rel="stylesheet">
    <link href="<?php 
echo css_url("default.min.css?v=" . STATIC_CONTENT_VERSION);
?>
" rel="stylesheet">
    
    <!--[if lt IE 9]>
        <script type="text/javascript" src="<?php 
echo third_party_url("bootstrap/js/html5shiv.min.js?v=" . STATIC_CONTENT_VERSION);
?>
"></script>    
        <script type="text/javascript" src="<?php 
echo third_party_url("bootstrap/js/respond.min.js?v=" . STATIC_CONTENT_VERSION);
?>
"></script>    
    <![endif]-->
    
    <script>
Example #28
0
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
  <title>Page Test</title>

  <!-- CSS  -->
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  <link href="<?php 
echo css_url('materialize');
?>
" type="text/css" rel="stylesheet" media="screen,projection"/>
  <link href="<?php 
echo css_url('style');
?>
" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
  <nav class="light-blue lighten-1" role="navigation">
    <div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo">MAGUS</a>
      <ul class="right hide-on-med-and-down">
        <li><a href="#">Navbar Link</a></li>
      </ul>

      <ul id="nav-mobile" class="side-nav">
        <li><a href="#">Navbar Link</a></li>
      </ul>
      <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
    </div>
  </nav>
Example #29
0
<html lang="pt-br">
	<head>
	
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
			
		<title><?php 
echo $heading;
?>
 - Globaldesk</title>
		
		<link href="<?php 
echo css_url('jquery-ui-1.10.0.custom.min.css');
?>
" rel="stylesheet" type="text/css" />
		<link href="<?php 
echo css_url('padrao.css');
?>
" rel="stylesheet" type="text/css" />
					
	</head>

	<body>
		<div class="geral">
			
			<div class="cabecalho" id="cabecalho"></div>
			
			<div class="conteudo-menu"></div>
			
			<div class="principal" id="principal">
			
				<div class="linha">
Example #30
0
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<!-- General meta information -->
	<title><?php 
echo $titre_page;
?>
</title>
	<meta name="keywords" content="" />
	<meta name="description" content="" />
	<meta name="robots" content="index, follow" />
	<meta charset="utf-8" />
	<!-- // General meta information -->
	
	<!-- Load stylesheets -->
	<link type="text/css" rel="stylesheet" href="<?php 
echo css_url("style");
?>
" media="screen" />
	<!-- // Load stylesheets -->
	
	<link rel="shortcut icon" href="<?php 
echo img_url("Logoajst.ico");
?>
">
	
	<script>
		$(document).ready(function(){
			$("#submit1").hover(
				function() {
					$(this).animate({"opacity": "0"}, "slow");
				},