-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
160 lines (134 loc) · 2.4 KB
/
style.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
@font-face {
font-family: 'Neue Montreal';
src: url(fonts/NeueMontreal-Regular.otf);
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Neue Montreal';
src: url(fonts/NeueMontreal-Bold.otf);
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Neue Montreal';
src: url(fonts/NeueMontreal-Medium.otf);
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Neue Montreal';
src: url(fonts/NeueMontreal-Light.otf);
font-weight: 100;
font-style: normal;
}
#root {
background-image: url(img/gradient.jpg);
box-sizing: border-box;
margin: 0;
padding: 0;
min-height: 100vh;
background-size: 100% 100%;
background-repeat: no-repeat;
font-family: monospace;
overflow: hidden;
}
.row h1 {
margin-top: 10px;
font-family: 'Neue Montreal';
font-weight: 100;
margin-bottom: 0;
}
.row p {
font-family: 'Neue Montreal';
font-weight: 300;
}
.btn:focus, .btn:active:focus, .btn.active:focus{
outline:none;
box-shadow:none;
}
.title {
position: absolute;
}
.title-btns {
z-index: 3;
position: fixed;
}
.content {
position: absolute;
bottom: 0;
right: 0;
margin-bottom: 5%;
margin-right: 5%;
}
#content-Projects, #content-Contact {
display: none;
}
#content-Projects {
z-index: inherit;
width: 80vw;
height: 100vh;
max-height: 82vh;
overflow-y: auto;
scrollbar-width: none;
mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
}
#content-Projects::-webkit-scrollbar {
display: none;
}
#content-Projects #name {
font-family: 'Neue Montreal';
font-weight: 50;
font-size: 4dvh;
padding-bottom: 0;
margin-bottom: -0.3em;
}
#content-Projects #name a {
text-decoration: none;
color: white;
transition: color 0.3s ease;
}
#content-Projects #name a:hover {
color: gray;
}
#content-Projects #description {
font-family: monospace;
font-size: 2dvh;
padding-top: 5px;
margin-top: 0;
}
#content-Contact {
text-align: right;
}
#social {
color: white;
font-family: monospace;
font-weight: bold;
text-decoration: none;
transition: color 0.3s ease;
}
#social:hover {
color: grey;
}
@media only screen and (min-width: 400px) {
#content-Projects #name {
font-size: 5.5dvh;
}
#content-Projects #description {
font-size: 3dvh;
}
}
@media only screen and (min-width: 800px) {
.title {
margin: 4%;
}
.content {
margin: 3%;
}
#content-Projects #name {
font-size: 7dvh;
}
#content-Projects #description {
font-size: 2dvh;
}
}