-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
129 lines (127 loc) · 2.44 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
/* Importing EleganCSS */
@import url(assets/fonts/inter.css);
@media (prefers-color-scheme: dark) {
:root{
--bw:#212121;
--primarycolor: #1847b4;
--headersourceurl:url('https://source.unsplash.com/collection/89393741/');
}
}
@media (prefers-color-scheme: light) {
:root{
--bw:#FFFFFF;
--primarycolor: #1847b4;
--headersourceurl:url('https://source.unsplash.com/collection/58098712/');
}
}
:root{
--bw:#FFFFFF;
--primarycolor: #1847b4;
--headersourceurl:url();
}
body{
overflow-x: hidden;
overflow-y: scroll;
margin:0px 0px 0px 0px;
background-color:#212121;
min-height: 100vh;
}
#header{
margin:0px 0px 0px 0px;
position: relative;
width: 100vw;
height: 100vh;
left: 0px;
top: 0px;
overflow-x: hidden;
overflow-y: hidden;
text-align: center;
vertical-align: middle;
}
#header-img{
position: absolute;
transform: scale(1.1);
width: 100vw;
height: 100vh;
background: url(https://source.unsplash.com/collection/89393741/) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: blur(12px);
-webkit-filter: blur(12px);
z-index: -1;
}
#header-brandmark{
position:absolute;
top: 50%;
margin-top: -50px;
width:100vw;
/*margin-left: 50%;
margin-right: 50%;*/
}
#header-brandmark h1{
font-family: Inter;
font-weight: 300;
letter-spacing: 6px;
font-size:24pt;
color: var(--bw);
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
/*margin-left: 50%;
margin-right: 50%;*/
}
#header-brandmark h2{
font-family: Inter;
font-weight: 300;
font-size: .75rem;
letter-spacing: 6px;
color: var(--bw);
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
/*margin-left: 50%;
margin-right: 50%;*/
}
#header-brandmark-logo{
width: 8vh;
height: 8vh;
src:url('http://jtechnologies.xyz/assets/safari-pinned-tab.svg');
bottom: 1vh;
/*margin-left: 50%;
margin-right: 50%;*/
}
.article{
padding-top: 5vh;
padding-left: 2vw;
padding-right: 4vw;
font-family: Inter;
font-weight: 200 !important;
color: #FFFFFF;
}
.article a{
font-family: Inter;
color: #FFFFFF;
}
.article p{
margin-top:1vh;
font-weight: 500;
font-size: 1.3em;
}
#footer{
padding-top: 5vh;
font-weight: 500;
font-family: Inter;
text-align: center;
color: #efefef;
}
.rightalign{
text-align:right;
}
/* #partners h1{
margin-top:1vh;
font-weight: 500;
font-size: 1.3em;
}*/
footer h1{
font-size:1em;
}