-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (89 loc) · 2.01 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap" rel="stylesheet');
:root {
--fontFamily: 'Montserrat', sans-serif;
--background: rgba(0, 0, 0, 0.55);
--linkSelection: rgb(59, 59, 59);
--infoHeadingColor: #ffffff;
--pageBackgroundColor: #ffffff;
--pageTextColorLight: #fff;
--pageTextColorDark: rgba(0, 0, 0, 0.55);
--pageLinkBackgroundColor: rgba(0, 0, 0, 0.55);
}
footer {
text-align: center;
font-family: var(--fontFamily);
font-size: 0.75rem;
font-weight: 400;
}
#backToHome {
width: 100%;
font-family: var(--fontFamily);
font-size: 1.3rem;
font-weight: 400;
text-align: center;
text-decoration: none;
margin: 5px;
line-height: 1.25;
display: block;
}
/* Page Specific CSS */
body {
background-color: var(--pageBackgroundColor);
color: var(--pageTextColorDark);
}
#userPhoto{
width: 200px;
height: 200px;
display: block;
margin: 5px auto;
}
#title {
word-wrap: break-word;
width: 100%;
color: black;
font-family: var(--fontFamily);
font-size: 3rem;
font-weight: 800;
text-align: center;
text-decoration: none;
line-height: 1.25;
display: block;
margin: unset;
}
#links {
max-width: 675px;
width: auto;
display: block;
margin: 0px auto;
}
.desc {
display: block;
font-family: var(--fontFamily);
font-size: 1rem;
font-weight: 500;
border-radius: 5px;
width: auto;
text-align: center;
text-decoration: none;
}
.link, .info {
margin-top: 10px;
display: block;
margin-bottom: 20px;
padding: 17px;
background-color: var(--pageLinkBackgroundColor);
color: var(--pageTextColorLight);
font-family: var(--fontFamily);
font-size: 1rem;
font-weight: 500;
border-radius: 5px;
text-align: center;
text-decoration: none;
transition: all .25s ease-in-out;
}
.link:hover{
background-color: var(--linkSelection);
}
#map{
min-height: 200px;
}