-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet1.css
More file actions
93 lines (82 loc) · 1.74 KB
/
stylesheet1.css
File metadata and controls
93 lines (82 loc) · 1.74 KB
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
body,html{
height: 100%;
overflow: hidden;
background-image: url(images/slanted-gradient.svg);
background-size: cover;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.center{
text-align:center;
margin-left: auto;
margin-right: auto;
width: 50%;
color:black;
}
.center.logo{
text-align:center;
margin-left: auto;
margin-right: auto;
width: 50%;
color:black;
}
.logoHead {
float: left;
background-color: black;
}
.button-container {
width: 150px;
}
.button {
width: 100%;
display: block;
color: rgb(3, 160, 160);
background-color: black;
height: 60px;
font-size: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font: 200;
}
.vertical-center {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
ul.menu {
list-style-type: none;
margin: 0;
padding: 200;
overflow: hidden;
background-color: rgb(11, 192, 192);
position: fixed;
top: 0;
width: 100%;
}
li{
text-align: center;
list-style-type: none;
}
li.menu{
margin-right: 10px;
float: left;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
li:last-child{
border-right: none;
}
.menu{
display: block;
color: azure;
text-align: left;
padding: 14px 16 px;
text-decoration: none;
}
li a:hover:not(.active){
background-color:rgb(11, 192, 192);
}
.active{
background-color: rgb(11, 151, 233);
}