blob: 6657145cb32552da9eecac43ec4eae5c5d2000d6 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
Prologue by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/*********************************************************************************/
/* Basic */
/*********************************************************************************/
/* Section/Article */
section,
article
{
}
section > .last-child,
article > .last-child
{
margin-bottom: 0;
}
section.last-child,
article.last-child
{
margin-bottom: 0;
}
/* Form */
form
{
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea
{
-ms-behavior: url('css/ie/PIE.htc');
}
/* Button */
input[type="button"],
input[type="submit"],
input[type="reset"],
.button
{
-ms-behavior: url('css/ie/PIE.htc');
}
/*********************************************************************************/
/* Header */
/*********************************************************************************/
#nav
{
}
#nav ul
{
}
#nav ul li
{
}
#nav ul li a
{
color: #888;
}
#nav ul li a.active
{
background: #1C2022;
}
/*********************************************************************************/
/* Main */
/*********************************************************************************/
#main
{
}
#main > section
{
}
#main > section.cover
{
background-position: auto;
-ms-behavior: url('css/ie/backgroundsize.min.htc');
}
/*********************************************************************************/
/* Side Panel */
/*********************************************************************************/
#sidePanelToggle
{
}
#sidePanelToggle .toggle
{
background-color: #888;
}
|