-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (109 loc) · 1.92 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (109 loc) · 1.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@font-face {
font-family: "Padauk";
src: url(Padauk-Regular.ttf);
}
.title {
font-family: "Padauk";
font-size:5vw;
color: white;
margin-left: 24vw;
}
.extra {
opacity: .70;
}
.extra:hover {
opacity: 100;
}
a, a:visited {
font-family: "Padauk";
color: white;
text-decoration:none;
}
.infocontainer {
display:grid;
margin-left: 7.5vw;
margin-right: auto;
}
.info {
display:inline;
margin-right: 5vmin;
margin-bottom: 2.5vh;
}
.description, .extra, .contact {
color: white;
font-family: 'Times New Roman', Times, serif;
}
.contact {
margin-left: 55vw;
margin-right: auto;
margin-top: 20vh;
margin-bottom: 5vmin;
}
#portfoliolink, #portfoliolinktxt {
color:rgb(255, 238, 152);
}/*
#portfoliolinktxt {
text-decoration: underline;
}*/
/*background style*/
.movingbg {
position: fixed;
z-index: -1;
right:0;
top:0;
background-color: black;
}
.videoinbg {
height:100vh;
width: 100vw;
opacity: 20%;
}
.mobilegifbg {
position: fixed;
z-index: -1;
right:0;
top:0;
width: 100vw;
display: none;
}
/*mobile design*/
@media screen and (max-width:1150px) {
.movingbg {
display: none;
}
body {
background-image: url("openheart.gif");
background-size:cover;
background-position: center;
}
.title {
font-family: "Padauk";
font-size:10vw;
color: white;
margin-left: 24vw;
padding-bottom: 5vh
}
.extra {
opacity: 80%;
}
.extra:hover {
opacity: 100;
}
.contact {
margin-left: 30vw;
margin-right:5vmin;
margin-top: 15vh;
margin-bottom: 10vmin;
}
p {
line-height: 75%;
padding: 0px;
margin-top: 0px;
margin-bottom: 10px;
}
a {
font-family: "Padauk";
color: white;
text-decoration:underline;
}
}