1@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap');
2
3::-webkit-scrollbar {
4 width: 10px;
5}
6
7::-webkit-scrollbar-track-piece {
8 background-color: #393939;
9}
10
11::-webkit-scrollbar-thumb {
12 background-color: #FFFFFF;
13}
14
15html {
16 scrollbar-color: #ffffff #393939;
17 scrollbar-width: thin;
18 background: black;
19}
20
21body {
22 position: relative;
23 margin: 0;
24 font-family: "Source Sans Pro";
25 color: white;
26 font-weight: 200;
27 text-shadow: 0px 0px 5px black;
28}
29#container {
30 display: flex;
31 position: relative;
32 width: 100%;
33 min-height: 100vh;
34 background:url(./assets/images/zhaoli-jin-H4L0qb-qMNY-unsplash.webp);
35 background-size: cover;
36 background-position: center;
37}
38.column{
39 width: 50%;
40}
41
42.inner-widget-text-big{
43 font-size: 48px;
44}
45.inner-widget-text-mid{
46 position: relative;
47 font-size: 32px;
48}
49.inner-widget{
50 background: #0009;
51 padding: 25px;
52 margin: 25px;
53}
54.in-left-column{
55 margin-right: 12.5px;
56}
57.in-right-column{
58 margin-left: 12.5px;
59}
60.inner-widget-language-rating{
61 position: absolute;
62 display: flex;
63 right: 0px;
64 top: 16px; /* 32-16*/
65}
66.inner-widget-language-rating-cube{
67 width: 16px;
68 height: 16px;
69 margin-left: 12px;
70}
71.inner-widget-language-rating-cube-enabled{
72 background: white;
73}
74.inner-widget-language-rating-cube-disabled{
75 background: rgba(0, 0, 0, 0.4);
76}
77#home-link{
78position: absolute;
79top: 40px;
80right: 40px;
81}
82#home-link-a{
83 color: white;
84 text-decoration: none;
85font-size: 32px;
86font-weight: 400;
87}
88#home-icon{
89 width: 32px;
90 height: 32px;
91}