summaryrefslogtreecommitdiff
path: root/neuarriero.css
blob: 43256ba1dda75d87dfb2d8014e151cc682daedc2 (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
:root {
    --main-bg-color: #4e0408;
    --main-fg-color: #73232d;
    --main-ac-color: #963C3F;
    
}

body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}
header {
    display: flex;
    background:linear-gradient(to bottom, var(--main-bg-color) 0%, var(--main-fg-color) 100%);
    box-shadow: rgba(0,0,0,.3) 0 3px 8px;
    padding: 0.5rem;
    color: #ffffff;
    align-items: stretch;
    
}

a.link::after {
    content: url("/icons/link_go.png");
}

header img {
    object-fit: cover;
    margin-right: 1rem;
    height: 4rem;
    align-items: center;
}
nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 95%;
    background-color: whitesmoke;
}
nav a {
	margin: 0 0.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}
nav img {
	margin-right: 0.5rem;
}
header h1 {
    margin: 0;
    color: white;
}
header h1 a {
    font-size: 120%;
    color: white;
    text-decoration: none;
}

.subtitle {
    display: flex;
    background-color: var(--main-ac-color);
    color: white;
    flex-direction: row;
    max-height: 2.5rem;
    align-items: center;
    gap: 1.5rem;
    
}

.subtitle::before {
    content: "";
    flex: 0 0 2.5rem;
    height: 2.5rem;
    background: url("/media/muleteer.png") center / contain no-repeat;

}

hr {
    padding: 0;
    margin: 0;
    border-color: white;
}

main {
    margin: 0 0 0 2.5rem;
}
.fig {
	position: fixed;
	bottom: 0%;
	right: -2%;
	opacity: 0.15;
	transition: opacity 0.25s ease-in;
	z-index: -1;
	width: 25%;
}
.fig:hover {
	z-index: 5;
    opacity: 1;
}