-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared-styles.html
63 lines (55 loc) · 1.65 KB
/
shared-styles.html
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
<!-- shared styles for all elements and index.html -->
<dom-module id="shared-styles">
<template>
<style>
.page-title {
@apply(--paper-font-display2);
color: black;
}
paper-menu a > *,
paper-menu paper-item > *,
paper-menu paper-icon-item > * {
pointer-events: none;
}
neon-animatable {
width: 100%;
min-height: 100vh;
overflow: hidden;
background: #4C4252;
}
shape-shifter {
cursor: pointer;
}
.landing {
background: url(../images/me_vertical_02.png);
background-size: cover;
background-position: center;
}
@media (min-width: 1000px) {
.landing {
background: url(../images/me_horizontal.png)
}
}
.project_image{
height:100vh;
width:100vw;
}
.project_detail iron-image{
--iron-image-width: 100%;
}
paper-button.github_button {
background-color: #808080;
}
paper-button.linkedin_button {
background-color: #0177B5;
}
paper-button.email_button {
background-color: pink;
}
.left_button, .right_button{
--iron-icon-height: 50px;
--iron-icon-width:50px;
}
</style>
</template>
</dom-module>