-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
137 lines (137 loc) · 2.26 KB
/
stylesheet.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
126
127
128
129
130
131
132
133
134
135
136
137
html {
height: 100%;
}
body {
font-family: 'Libre Franklin', sans-serif;
color: white;
background-color: black;
display: flex;
flex-flow: column;
justify-content: center;
align-items: stretch;
min-height: 100%;
margin: 0;
word-break: break-word;
overflow-wrap: break-word;
}
:link {
color: #6bf;
}
:visited {
color: #b6f;
}
main {
margin: 0 auto;
}
/* front page */
.title {
font-size: 6em;
}
/* projects page */
.projects {
display: flex;
flex-flow: column;
max-width: 850px;
margin: 0 auto;
padding: 12px 25px;
background-color: #222;
}
.project {
display: flex;
flex-flow: column;
margin: 4px;
padding: 12px;
}
.stage-0 {
background-color: #343;
}
.stage-1 {
background-color: #485833;
}
.stage-2 {
background-color: #6a5c33;
}
.stage-3 {
background-color: #654;
}
.classification {
display: flex;
font-size: .75em;
justify-content: space-between;
}
.id {
color: white;
opacity: 0.2;
text-decoration: none;
}
.id:hover {
opacity: 1;
}
:target .id {
opacity: 1;
text-decoration: underline;
}
.details {
display: flex;
}
.summary {
display: flex;
flex: 1;
flex-flow: column;
}
.logo {
object-fit: contain;
width: 128px;
height: 128px;
margin: 3px 9px 3px 0;
padding: 3px;
background-color: rgba(255,255,255,0.75);
background-image:
linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%),
linear-gradient(-45deg, rgba(0,0,0,0.1) 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.1) 75%),
linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.1) 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.concept {
margin-top: 3px;
}
.name {
font-size: 2em;
font-weight: bold;
}
.subname {
font-size: 1.5em;
}
.description {
font-style: italic;
}
.description p {
margin: 0;
}
.urls {
margin-top: 2px;
}
.home {
margin-right: 6px;
color: white;
}
.badge {
color: black;
text-decoration: none;
font-size: .5em;
text-transform: uppercase;
background-color: rgba(255,255,255,0.9);
padding: 2px 4px;
vertical-align: 2px;
margin-right: 6px;
border-radius: 6px;
font-style: normal;
}
.remarks {
border-radius: 8px;
background-color: rgba(255,255,255,0.25);
padding: 0 8px;
margin-top: 8px;
}