-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.css
124 lines (96 loc) · 1.8 KB
/
demo.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
background-color: #efefef;
}
body{
font:14px/1.5 Arial, Helvetica, sans-serif;
margin:0;
}
header{
box-sizing: border-box;
text-align: center;
width: 100%;
padding: 25px 40px;
background-color: #673AB7;
overflow: hidden;
}
header h1{
float: left;
font: normal 24px/1.5 'Open Sans', sans-serif;
color: #fff;
}
header a{
color:#fff;
float: right;
text-decoration: none;
display: inline-block;
padding: 13px 50px;
border-radius: 3px;
font: bold 14px/1 'Open Sans', sans-serif;
text-transform: uppercase;
background-color:#F05283;
}
ul {
list-style: none;
border-bottom: 1px solid #EAEAEA;
background-color: #FFF;
padding: 20px;
margin-top: 0;
text-align: center;
margin-bottom: 75px;
}
ul a{
text-decoration: none;
color: #FFF;
text-align: left;
background-color: #BCB8C2;
padding: 10px 16px;
border-radius: 2px;
opacity: 0.8;
font-size: 16px;
display: inline-block;
margin: 4px;
line-height: 1;
outline: none;
transition: 0.2s ease;
}
ul li a.active{
background-color: #F05283;
pointer-events: none;
}
ul li a:hover {
opacity: 1;
}
ul li{
display: inline-block;
}
@media (max-width: 1000px) {
header h1{
float: none;
}
header a{
margin-top: 25px;
float: none;
}
}
.main-content{
margin-bottom: 75px;
}
/* -- Demo ads -- */
@media (max-width: 1200px) {
#bsaHolder{ display:none;}
}
/* -- Link to Tutorialzine -- */
.tz-link{
text-decoration: none;
color: #fff !important;
font: bold 36px Arial,Helvetica,sans-serif !important;
}
.tz-link span{
color: #da431c;
}