forked from thegarfieldgray/EHCRS-Prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader-styles.php
40 lines (37 loc) · 1.72 KB
/
header-styles.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php header("Set-Cookie: name=value; httpOnly"); ?>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Garfield Gray"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="description" content=""/>
<meta name="keywords" content="">
<title>EHCS</title>
<link rel="icon" href="img/logo.png">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!--<link rel="stylesheet" type="text/css" href="css/animate.css">-->
<link rel="stylesheet" type="text/css" href="css/hover.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css">
<!-- Main font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<!-- Calendar -->
<!--<link rel='stylesheet' href='http://fullcalendar.io/js/fullcalendar-2.2.3/fullcalendar.css' />-->
<style>
input#ipt {
color:lightgrey;
width: 100%;
background-color: white;
border-color: #66afe9;
/*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);*/
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
input#ipt: hover,
input#ipt: focus {
background-color: white;
color: black;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
</style>
</head>