Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ie8.scss « sass « static - github.com/schmanat/hugo-highlights-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92018763f2e84eeece9cbbf4990f08cac5d625fb (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import 'libs/vars';
@import 'libs/functions';
@import 'libs/mixins';
@import 'libs/skel';

/*
	Highlights by HTML5 UP
	html5up.net | @n33co
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* Basic */

	body, html {
		height: 100%;
	}

	html {
		background: none;
	}

/* List */

	ul {
		&.actions {
			li {
				padding: 0 0 0 (_size(element-margin) * 0.5);

				&:first-child {
					padding-left: 0;
				}
			}
		}
	}

/* Form */

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		border: solid 2px _palette(border);
		position: relative;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"] {
		line-height: _size(element-height);
	}

	input[type="checkbox"],
	input[type="radio"] {
		font-size: 3em;

		& + label {
			&:before {
				display: none;
			}
		}
	}

/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		border: solid 2px _palette(border);
	}

/* Main BG */

	.main-bg {
		z-index: 0;
	}

/* Main */

	.main {
		background-size: cover;

		.container {
			background: _palette(bg);
			border-top: solid 1px _palette(border);
			position: relative;
			z-index: 1;
		}

		.goto-next {
			@include icon;

			&:before {
				color: _palette(border);
				content: '\f063';
				display: block;
				font-size: 2em;
				height: 2em;
				left: 0;
				line-height: 2em;
				position: absolute;
				text-align: center;
				text-indent: 0;
				top: 0;
				width: 2em;
			}
		}
	}

/* Header */

	#header {
		-ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
		background-image: url('../../images/bg.jpg');
		background-size: cover;
		height: 100%;

		&:after {
			min-height: 100%;
		}

		header {
			position: relative;
			z-index: 1;
		}

		.container {
			background: _palette(bg);
			z-index: 1;
		}
	}

/* Footer */

	#footer {
		-ms-behavior: url('assets/js/ie/backgroundsize.min.htc');
		background-image: url('../../images/bg.jpg');
		background-size: cover;

		.container {
			background: _palette(bg);
			border-top: solid 1px _palette(border);
			position: relative;
			z-index: 1;
		}
	}