-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdemo.css
More file actions
executable file
·64 lines (54 loc) · 974 Bytes
/
demo.css
File metadata and controls
executable file
·64 lines (54 loc) · 974 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container-fluid{
padding:0;
margin:0;
}
header{
box-sizing: border-box;
text-align: center;
width: 100%;
padding: 25px 40px;
background-color: #3A56B7;
overflow: hidden;
}
header .limiter{
max-width: 1000px;
margin: 0px auto;
}
header h3{
font: normal 24px/1.5 'Open Sans', sans-serif;
float: left;
color: #fff;
margin:0;
}
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;
opacity: 0.9;
}
header a:hover{
color: #fff;
text-decoration: none;
opacity: 1;
}
@media (max-width: 850px) {
header h3{
float: none;
text-align: center;
}
header a{
margin-top: 20px;
float: none;
}
}