-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleMain.css
118 lines (117 loc) · 1.83 KB
/
styleMain.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
* {
margin:0px;
padding:0px;
}
.headertitle {
font-family:verdana, tahoma, sans-serif;
padding:15px;
background-color:rgba(26, 26, 36, 0.5);
font-size:25px;
color:white;
}
.headertitle h1 {
position:absolute;
}
.middletitle{
position:absolute;
width:50%;
top:45%;
left:45%;
color:white;
}
header {
background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./img/9.jpg");
background-repeat:no-repeat;
background-size: cover;
background-position:center;
height:100vh;
width:100%;
}
.headerButton a{
color:rgb(255, 255, 255);
text-decoration: none;
font-weight:bold;
}
.headerButton a:hover{
color:rgb(204, 204, 204);
}
.headerButton {
float:right;
padding:20px 15px 15px 10px;
}
.headerButton li {
font-family:verdana, tahoma, sans-serif;
margin:7px;
list-style:none;
display:inline-block;
}
#logo img {
float:left;
height:65px;
width:90px;
}
#change{
float:right;
border-radius:3px;
padding:12px;
background-color:rgb(221, 134, 3);
text-decoration:none;
font-size:20px;
color:white;
}
change a:hover {
background-color:rgb(235, 149, 19);
}
#menu a, #menubutton a {
text-decoration: none;
color: white;
padding:30px;
font: arial;
font-size: 13px;
}
@media only screen and (min-width: 800px) {
#menu{
float: right;
display:block;
text-transform:uppercase;
}
.menuitem {
display: inline;
}
.menuitem + .menuitem {
border-left: 1px solid white;
margin-left: 8px;
padding-left: 8px;
}
#menubutton {
display:none;
}
}
@media only screen and (max-width: 799px) {
#menubutton {
display: inline;
float:right;
}
#menu {
position: absolute;
top: 48px;
right: 50px;
background: black;
padding: 16px;
}
.showmenu {
display:block;
}
.hiddenmenu{
display:none;
}
.menuitem {
display: block;
}
.menuitem + .menuitem {
margin-top: 8px;
}
}
.clear {
clear:both;
}