-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (65 loc) · 1.68 KB
/
style.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
html
{
margin: -1px;
border: -1px;
padding: -1px;
}
body
{
background-image: url('./campfire03.gif');
#background: #232728 center center fixed;
background-position:center;
#background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
font-family: 'Questrial', sans-serif; /* Applies the font you reference in the HTML */
font-size: 16px;
}
::-webkit-scrollbar /* Gets rid of any scrollbars on the browser */
{
display: none;
}
ul
{
display: block;
width: 35%;
margin: 15% auto;
padding: 0;
list-style: none;
}
ul.container
{
box-shadow: 0px 0px 0px #000;
}
ul.submenu
{
display: block;
width: 100%;
margin: 0;
padding: 0;
background:rgba(220,219,219,.07);
}
a /* Link Style */
{
display: block;
padding: 10px;
color: #EEE;
transition: all .3s ease;
text-decoration: none;
opacity: .5;
}
a:hover
{
color: #fff;
transition: all .3s ease;
}
textarea:focus, input:focus {outline: none;}
input {text-align: center;font-size: 16px;background: #EEE;border: none;}
li.search {color: #555;background: #EEE;text-align: center;display: block;padding: 10px;opacity: .5;}
a.parent {transition: all .3s ease;color: #222;background: #EEE;text-align: center;opacity:0.3;}
a.tab {transition: all .3s ease;opacity: 1;}
a.tab:hover {transition: all .3s ease;text-indent: 5px;opacity: 1; }
ul > li:hover > a.parent {transition: all .3s ease;opacity: .8;}