-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.scss
93 lines (82 loc) · 2.22 KB
/
homepage.scss
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
@import "colors.scss";
$background-color: $color0; // main background color
$color: $color7; // main font color
$link-color: $color5; // main link color
body {
background: $background-color;
color: $color;
font-size: 15pt;
}
// clear links formating
a:visited, a:hover, a:active, a:link {
text-decoration: none;
color: $color7;
}
.page {
font-size: 15pt;
// main table containing main links (like social media or wikies)
.main {
height: 100%; // will take height equal to window height
// margin: 40% 0;
display: flex;
flex-direction: column;
justify-content: center;
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
// entries in main table
.elem {
font-size: 15pt;
margin: 0.5em 2em;
font-weight: bold;
}
}
}
.section
{
margin-bottom: 25%;
margin-top: 25%;
h1,h2,h3,h4,h5
{
border-bottom: 2px solid;
border-color: white;
padding-left: 1em;
}
.cards
{
// padding-top: 25%;
// padding-bottom: 25%;
display: flex;
flex-direction: row;
justify-content: center; // center of screen
flex-wrap: wrap;
// align-items: center;
.column {
display: flex;
flex-direction: column;
// align-items: center; // center items under head
margin: 0em 1em;
.elem {
margin: 0.1em 0em;
&:first-child {
margin: 1em;
}
}
.delim {
width: 100%;
font-size: 0.5em;
border-bottom: 1px solid $color;
text-align: right;
}
}
}
}
}
// highlight every first entry on row/column of table
a.elem:first-child {
font-size: 25pt;
font-weight: bolder;
color: $link-color;
}