-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
124 lines (106 loc) · 2.16 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
* {
margin: 0px;
}
header {
display: hidden;
}
body {
background-color: #F5E9E2;
color: white;
}
main {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
}
#main {
/*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
background-color: rgba(0, 0, 0, 0.5);
text-align: justify;
padding: 5mm;
height: min-content;
width: 100%;
max-width: 19cm;
margin: 20px 5% 50px;
}
#pfp {
float: left;
margin-right: 5mm;
max-block-size: 2cm;
border-radius: 100%;
}
#main > p {
margin-top: 10px;
}
#buffer-section {
align-self: baseline;
max-width: 25%;
min-width: 5%;
}
#projects {
padding: 5px;
width: 100%;
max-width: 19cm;
margin: 20px 5% 50px;
background-color: rgba(0, 0, 0, 0.5);
}
#links-container a img{
margin: 2mm;
width: 32px;
height: 32px;
}
.project {
padding: 1em;
display: flex;
flex-direction: column;
overflow: hidden;
height: auto;
max-height: 80px;
transition: max-height 1s ease 0.1s;
}
.project:hover {
max-height: 100%;
}
.project-summary {
display: flex;
text-align: justify;
margin-bottom: 2.5mm;
}
.project-icon {
width: auto;
height: auto;
max-block-size: 5em;
margin-right: 3%;
}
.project-description {
padding: 3mm;
overflow: hidden;
text-align: justify;
}
.project-description > p {
margin-top: 10px;
}
.project-title {
display: block;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
footer {
position: fixed;
display: flex;
bottom: 0px;
min-height: 2em;
margin-left: 1cm;
margin-bottom: 3mm;
}
footer > span {
margin-right: 1cm;
}