-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
99 lines (82 loc) · 1.5 KB
/
index.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
:root{
--pal0: #fff7f8;
--pal1: #ff4f69;
--pal2: #cc3266;
--pal3: #3e2653 ;
}
.container{
width:100%;
height:100%
}
body{
background-color: var(--pal3);
color: var(--pal0);
min-width: 100%;
min-height: 100%;
height: min-content;
padding: 50px;
margin: 0px;
box-sizing: border-box;
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
overflow-x: hidden;
overflow-y: visible;
display:flex;
justify-content:start;
align-items:center;
flex-direction: column;
}
.center-children{
display:flex;
justify-content:center;
align-items:center;
}
.relative-fill{
position: relative;
top: 0px;
left: 0px;
width: 100%;
height: 100%
}
.absolute-fill{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
min-height: 100%
}
html {
height: 100%;
overflow: auto;
margin: 0;
padding: 0;
scrollbar-color: var(--pal1) var(--pal3);
}
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}
.link{
color: var(--pal3);
transition: 0.25s ease;
}
.link:hover{
color: var(--pal1);
transition: 0s;
}
#article a{
color: var(--pal1);
transition: 0.25s ease;
}
#article a:hover{
color: var(--pal2);
transition: 0s;
}
img{
max-width: 100%;
}
.hidden{
display:none !important;
}