-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
125 lines (102 loc) · 2.05 KB
/
base.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
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Trispace:wght@100;200;300;400;500;600;700;800&display=swap');
*{
font-family: 'Trispace', sans-serif;
font-weight: 300;
margin: 0;
padding: 0;
text-decoration: none;
border: none;
--sizetext : 1em;
}
body{
color: #fff;
background-color: #020703;
justify-content: center;
align-items: center;
display: block;
height: auto;
width: auto;
line-height: 1.3em;
}
.navbar{
padding: 5px;
display: flex;
justify-content: right;
}
.navbar a{
background-color: transparent;
margin: 0.3vh;
padding: 1.5vh;
color: white;
border-radius: 10px;
border: 2px solid transparent;
}
.navbar a:hover{
background-color: rgba(255, 255, 255, 0.5);
color: #020703;
text-decoration: none;
backdrop-filter: blur(1px) saturate(100%);
border: 2px solid rgba(209, 213, 219, 0.4);
}
footer{
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 2vh;
background-color: rgba(0, 162, 255, 0.5);
color: #fff;
text-align: center;
}
a{
color: rgb(0, 102, 195);
}
a:hover, i:hover{
text-decoration: underline;
}
p{
text-justify: inter-word;
text-align: justify;
font-weight: 400;
}
h1{
font-weight: 700;
}
h2{
font-weight: 500;
}
h3{
font-weight: 600;
font-size:1.4em;
}
h4{
font-weight: 600;
font-size: 1.2em;
}
@media (max-width: 800px)
{
*{
font-size: calc(0.95 * var(--sizetext));
}
h1{
font-size: calc(1.4 * var(--sizetext));
}
h3{
font-size: calc(1.1 *var(--sizetext));
}
h4{
font-size: calc(0.8 * var(--sizetext));
}
.navbar{
justify-content: center;
}
}
abbr{
display: inline;
text-decoration-line: underline;
text-decoration-style: dotted;
}
a img{
cursor: zoom-in;
margin-top: 2%;
position: relative;
width: 100%;
height: auto;
}