-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (72 loc) · 1.23 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
body {
font-family: 'Tinos', 'Noto Sans', "sans-serif";
}
.container {
position: relative;
width: 1024px;
left: 50%;
margin-left: -512px;
}
.profileimage {
width: 256px;
height: 256px;
float: right;
display: block;
}
.profiletext {
display: block;
vertical-align: top;
}
.topdiv {
height: 100%;
margin-top: 16px;
}
.powered {
width: 100%;
font-size: 0.8em;
margin-top: 64px;
}
.li-withoutstyle {
list-stype: none;
}
@media screen and (max-width: 600px) {
.profileimage {
position: relative;
float: none;
left: 50%;
margin-left: -128px;
}
}
@media screen and (max-width: 1080px) {
.container {
position: absolute;
width: 96%;
left: 0%;
margin-left: 0px;
padding: 0 2% 0 2%;
}
}
@media (prefers-color-scheme: light) {
body {
background-color: #FFFFFF;
color: #000000;
}
a:link {
color: #0000FF;
}
a:visited {
color: #4B2088;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #313235;
color: #FFFFFF;
}
a:link {
color: #8CA7FC;
}
a:visited {
color: #E0BBE4;
}
}