aboutsummaryrefslogtreecommitdiff
path: root/assets/style/style.css
blob: 9c4c75230b35ae9813026a4906df963807aefa1c (plain)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* Page default disposition */
body 
{
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid var(--link-bg-color);

	font-size: calc(12px + 0.390625vw);
	font-family: "Courier New";

    width: 90vw;
    margin: 0 auto;
    text-align: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Navbar, Contact, Error */
#error {
	text-align: center;
}

#contact, #error
{
    margin-top: 2vh;
}

nav ul, #contact ul
{
    display: flex;
    justify-content: center;
}

nav a, #contact a, #error a
{
    padding: 0.1rem 1rem;
    margin: 0rem 0.3rem;

    text-align: center;
	font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;

    color: var(--link-color);
    background-color: var(--link-bg-color);
	border: 1px solid var(--link-bg-color);
}

nav a:hover, #contact a:hover, #error a:hover
{
    color: var(--link-bg-color);
    background-color: var(--link-color);
}

/* pre */
pre 
{
    color: var(--link-bg-color);
}

pre:hover 
{
    animation: fadePreColor 4s infinite alternate;
}

@keyframes fadePreColor {
    0%   {color: var(--lightred);}
    25%  {color: #ff5a5f;}
    50%  {color: #c81d25;}
    100% {color: #370617;}
}

/* top */
.top
{
    background-color: var(--link-bg-color);
    color: var(--link-color);
    font-weight: bold;
}

.top:after {
    content: "HTTPS://ARKA.ROCKS"
}

/* main */
main
{
    margin: 2vw;
    text-align: left;
}

main a
{
    color: var(--link-bg-color);
}

/* titles */
h1, h2, h3, h4 {
    color: var(--title-color);
}

h1 {
	width: 80%;
	margin: 0 auto;

	text-align: center;
	text-transform: uppercase;
	font-size: calc(34px + 0.390625vw);
}

main div.h1-content {
	width: 80%;
	margin: 0 auto;
}

#contact ul 
{
    margin-bottom: 2vh;
}

@media screen and (min-width: 1000px)
{
	div#content
	{
		max-width: 850px;
		margin-left: auto;
		margin-right: auto;
	}
}	

@media screen and (max-width: 720px) 
{
    body 
    {
		font-size: calc(10px + 0.390625vw);
    }

	h1
	{
		font-size: calc(24px + 0.390625vw);
	}
}

@media screen and (max-width: 600px) 
{
    nav ul, #contact ul
    {
		flex-direction: column;
		gap: 0.5rem;
    }
	h1
	{
		font-size: calc(14px + 0.390625vw);
	}

}
ArKa projects. All rights to me, and your next child right arm.