-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (81 loc) · 1.62 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (81 loc) · 1.62 KB
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
body {
background-color: #ececec; /* #FFDDDD */
text-align: center;
color: blue;
font-family: 'Cutive Mono', monospace;
image-rendering: pixelated; /* Ensures nearest-neighbour scaling. Pixels! */
margin: 0;
display: flex;
overflow-x: scroll;
overscroll-behavior: none;
}
h1 {
color: rgb(38, 194, 233);
font-family: 'munroregular','Cutive Mono', monospace;
margin: 8px;
-khtml-user-select: none;
-o-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
p {
text-align: left;
margin: 8px;
}
img{
-khtml-user-select: none;
-o-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
img::selection {
background-color: transparent;
color: #000;
}
.page {
z-index: 2;
left: 128px;
top: 80px;
border: 3px solid #BBBBBB;
position: fixed;
align-self: center;
background-color: white;
max-width: 75%;
min-width: 100px;
height: auto;
display: none;
draggable: true;
}
.pageContent {
margin-left: 5px;
margin-right: 5px;
}
#topBorder {
border: 1px solid #222222;
height: 20px;
}
#vanityImage {
max-width: 100%;
max-height: 100%;
}
#musicPage {
left: 220px;
max-width: 450px;
}
#videoPage {
left: 140px;
max-width: 570px;
}
#projectPage {
left: 150px;
max-width: 400px;
}
@font-face {
font-family: 'munroregular';
src: url('fonts/munro-webfont.woff2') format('woff2'),
url('fonts/munro-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}