-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpage-css.css
107 lines (86 loc) · 1.91 KB
/
webpage-css.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
.main-header{
background-color: #292c2f;
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
padding: 20px 40px;
height: 80px;
box-sizing: border-box;
max-width: 1500px;
text-align: center;
margin: 0 auto;
}
.main-header h1{
float: left;
font: normal 28px Cookie, Arial, Helvetica, sans-serif;
line-height: 40px;
margin: 0;
}
.main-header span{
color: #5383d3;
}
.main-header a{
color: #ffffff;
text-decoration: none;
}
.main-header nav{
font: 16px, Arial, Helvetica , sans-serif;
line-height: 40px;
float: right;
}
.main-header nav a{
display: inline-block;
padding: 0 5px;
text-decoration: none;
color: #ffffff;
font-size: 16px;
opacity: 0.9;
}
.main-header nav a:hover{
opacity: 1;
}
.main-header nav a.selected{
color: #608bd2;
pointer-events: none;
opacity: 1;
}
.button-type1 {
display: inline-block;
text-align: center;
border: none;
padding: 8px 15px;
font-weight: 600;
font-size: 16px;
position: relative;
color: #fff;
cursor: pointer;
background: #d82a4e;
}
.main-header button{
margin-left: 123px;
}
@media all and (max-width: 600px){
.main-header{
padding: 20px 0;
height: 75px;
}
.main-header h1{
float: none;
margin: -8px 0 10px;
text-align: center;
font-size: 24px;
line-height: 1;
}
.main-header nav{
line-height: 1;
float: none;
}
.main-header nav a{
font-size: 13px;
}
}
body {
background: url('https://source.unsplash.com/twukN12EN7c/1920x1080') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}