-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
110 lines (102 loc) · 1.76 KB
/
stylesheet.css
File metadata and controls
110 lines (102 loc) · 1.76 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
html {
font-family: Arial, sans-serif;
font-size: 18px;
}
body {
margin: 0;
background: #f5f5f5;
}
hr {
height: 1px;
border: none;
background: #eeeeee;
}
a {
color: #006ab3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
color: #004f83;
text-decoration: underline;
}
.nav-link {
color: #444444;
padding: 0 1rem;
text-decoration: none;
}
.nav-link:hover {
text-decoration: underline;
}
.nav-link:active {
text-decoration: underline;
}
.nav-link-active {
color: black;
}
.button {
display: inline-block;
border: none;
border-radius: 5px;
padding: 0.6rem 1rem;
color: white;
background-color: #008ae3;
}
.button:hover {
color: white;
text-decoration: none;
background-color: #24a3ff;
}
.button:active {
color: white;
text-decoration: none;
background-color: #004f83;
}
.header {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
display: flex;
position: relative;
flex-flow: row;
justify-content: space-between;
align-content: center;
padding: 1rem;
background: white;
z-index: 9999;
}
.header-left {
align-self: center;
}
.header-left-link {
color: black;
text-decoration: none !important;
}
.header-logo {
box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.15);
width: 75px;
height: 75px;
border-radius: 10px;
vertical-align: middle;
}
.header-title {
font-size: 1.5rem;
font-weight: bold;
margin-left: 1rem;
vertical-align: middle;
}
.content {
max-width: 1280px;
margin: auto;
padding: 3rem 1rem;
background: white;
}
.social-card {
display: inline-block;
max-width: 50px;
max-height: 50px;
vertical-align: middle;
}
.hidden {
display: none;
}