-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
115 lines (97 loc) · 1.34 KB
/
homepage.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
:root
{
/* Light */
--bgcolor: #e0e0e0;
--textcolor: #282a36;
/* Dark */
/* --bgcolor: #1e1f28;
--textcolor: #e9e9e4; */
--linkHoverColor: #8195d3;
--anchorPadding: 66px;
max-width: 1400px;
/* padding-top: 20%; */
margin: auto;
box-sizing: border-box;
color: var(--textcolor);
background-color: var(--bgcolor);
line-height: 1.6;
font-size: 24px;
font-family: mainFont;
text-align: center;
}
.anchorbottom
{
position:fixed;
bottom:0px;
left:0px;
width:100%;
padding-bottom: var(--anchorPadding);
}
.anchortop
{
font-size: 200%;
font-weight: bold;
position:fixed;
top: var(--anchorPadding);
left: 0px;
width: 100%;
}
.column
{
float: left;
width: 260px;
}
.row:after
{
content: "";
display: table;
clear: both;
}
@font-face
{
font-family: mainFont;
src: url(jbm.ttf);
}
h1
{
font-size: 24px;
padding-bottom: 20px;
}
p
{
margin-top: 0px;
margin-bottom: 4px;
}
a:link
{
color: var(--textcolor);
text-decoration: none;
}
a:visited
{
color: var(--textcolor);
text-decoration: none;
}
a:hover
{
color: var(--linkHoverColor);
text-decoration: underline;
}
.outside
{
width: 100%;
height: 100%;
display: flex;
text-align: center;
}
.inside
{
margin: auto;
}
.element
{
position: fixed;
inset: 0px;
margin: auto;
max-width: 100%;
}