This repository has been archived by the owner on Jun 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
technique2.css
106 lines (85 loc) · 1.71 KB
/
technique2.css
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
html, body {
margin: 0;
padding: 0;
}
body {
background: url('back.jpg') no-repeat center center fixed;
background-size: cover;
/*background-attachment: fixed;
background-position: center;*/
}
blockquote {
color: #f7604c;
}
blockquote strong {
text-shadow: 0px 0px 4px black;
}
pre {
background-color: #222;
padding: 10px;
border-radius: 3px;
}
/*.wrap {
background: url('back-.jpg') no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
height: auto;
width: 70%;
margin: 12% auto 0;
display: block;
box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
padding: 15px;
color: #eee;
font-family: sans-serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}*/
.wrap {
/*background-color: rgba(255, 255, 255, 0.1);*/
position: relative;
overflow: hidden;
height: auto;
width: 70%;
margin: 12% auto;
display: block;
box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
padding: 15px;
color: #eee;
font-family: sans-serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.wrap::before {
z-index: -1;
content: ' ';
width: 110%;
height: 110%;
position: absolute;
top: -15px;
left: -15px;
background: url('back-.jpg') no-repeat center center fixed;
background-size: cover;
/*background-attachment: fixed;
background-position: center;*/
-webkit-filter: blur(3px);
-moz-filter: blur(3px);
filter: blur(3px);
hr {
border-top: 0;
border-color: rgba(255, 255, 255, 0.3);
}
ul {
list-style-type: none;
}
ul li {
display: inline-block;
}
ul li a {
padding: 12px 16px;
text-decoration: none;
color: #eee;
transition: 0.3s all ease;
}
ul li a:hover {
background-color: rgba(255, 255, 255, 0.7);
color: #333;
}