-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
129 lines (115 loc) · 2.44 KB
/
style.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
126
127
128
129
.header {
overflow: hidden;
}
.header background-image {
opacity: 0.6;
}
.header h1{
text-align: center;
}
header {
background-image: url("LMAheader.png");
background-size: cover;
background-repeat: no-repeat;
float: none;
display: block;
text-align: left;
border-style: outset;
border-width: 5px;
border-color: #494D45;
box-shadow: 5px 10px #2C2D38;
text-shadow: 2px 2px #705B5B;
/*padding: 30px 300px;*/
}
h1 {
color: lightgrey;
font-family: Perpetua;
text-align: left;
}
}
@media screen and (max-width: 500px) {
header {
float: none;
display: block;
text-align: left;
border-style: outset;
border-width: 5px;
border-color: #494D45;
box-shadow: 5px 10px #2C2D38;
text-shadow: 2px 2px #705B5B;
background-image: url("LMAheader.png");
background-repeat: no-repeat;
background-size: cover
/*padding: 30px 300px;*/
}
h1 {
color: lightgrey;
font-family: Perpetua;
text-align: left;
}
}
h3 {
font-family: Perpetua;
text-align: justify;
text-justify: inter-word;
color: #2C2D38;
/*text-shadow: 1px 1px #2C2D38;*/
background-image: linear-gradient(#a99c9c, #a99c9c);
background-size: 100% 10px;
background-repeat: no-repeat;
background-position: 100% 0%;
transition: background-size .7s, background-position .5s ease-in-out;
}
p {
font-family: Arial, Helvetica, sans-serif;
text-align: justify;
text-justify: inter-word;
}
h3:hover {
background-size: 100% 100%;
background-position: 0% 100%;
transition: background-position .7s, background-size .5s ease-in-out;
}
.hover-underline-animation {
display: inline-block;
position: relative;
}
.hover-underline-animation:after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #705B5B;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}
#map {
border-style: outset;
border-style: solid;
border-color: black;
box-shadow: 5px 10px #494D45;
margin-right: 2%;
margin-left: 2%;
}
footer {
background-color: #2C2D38;
color: lightgrey;
bottom: 0;
width: 100%;
height: 60px;
padding-bottom: 25px;
font-family: Arial, Helvetica, sans-serif;
overflow: scroll;
}
.logos img {
width: 15%;
}
.logos { text-align: center;
}