-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylenavfooter.css
125 lines (107 loc) · 2.41 KB
/
stylenavfooter.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
125
/*Gestaltung Navigation mit Logo*/
.navigation {
display: block;
position: relative;
text-align: left;
align-items: center;
background-color: darkslategray;
margin-bottom: 1rem;
}
.navigation .bild {
vertical-align: middle;
position: absolute;
top: 1.25rem;
margin-left: 5rem;
}
.navigation ul {
display: inline;
text-align: center;
align-items: center;
padding: 0;
margin: 1rem;
padding: 0rem;
background-color: transparent;
}
.navigation .nav {
display: flex;
text-align: center;
justify-content: center;
}
.navigation ul li {
display: inline-block;
padding: 2rem;
padding-inline: 5rem;
}
.navigation button {
background-color: transparent;
border-style: none;
}
.navigation ul li a button {
text-decoration: none;
color: white;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-size: 150%;
cursor: pointer;
transition: all 1s;
display: block;
position: relative;
text-decoration: none;
padding: 10px 15px;
}
.navigation ul li a button:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background-color: rgb(197, 148, 148);
transform: scaleX(0);
transform-origin: right;
transition: all 0.5s;
}
.navigation ul li a button:after{
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 3px;
background-color: rgb(197, 148, 148);
transform: scaleX(0);
transform-origin: left;
transition: all 0.5s;
}
.navigation button:hover {
/*font-size: 200%;*/
transition: all 0.5s;
text-decoration: none;
color: rgb(197, 148, 148);
}
.navigation button:hover:before, .navigation button:hover:after{
transform: scaleX(1);
}
.navigation a{
text-decoration: none;
}
.navigation .active {
color: rgb(197, 148, 148);
}
/*Gestaltung für den Footer*/
footer {
align-items: end;
text-align: right;
background-color: rgb(71, 71, 71);
margin: 0;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-right: 2rem;
}
footer a {
color: white;
text-decoration: none;
}
footer li {
display: inline;
padding: 0.5rem;
}