-
+
Building protocols and products at all layers of the stack including
underlying transports, p2p overlays and routing, initial trust
establishment, and semantics for things like group chat.
@@ -131,8 +133,30 @@ layout: default
-
Waku
-
+
+ Waku
+
+
A gossip based messaging protocol for private, secure, p2p messaging
with implementations written in go, nim, java script.
@@ -181,8 +205,30 @@ layout: default
-
DApp Connect
-
+
+ DApp Connect
+
+
The communication layer for Ethereum. A tech stack enabling
decentralized communication between DApps and people.
diff --git a/package-lock.json b/package-lock.json
index ec63d81..1fcf196 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,13 +1,11 @@
{
- "name": "jekyll-starter-tailwind",
+ "name": "status-vac",
"version": "6.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
- "name": "jekyll-starter-tailwind",
"version": "6.0.0",
- "license": "MIT",
"devDependencies": {
"autoprefixer": "10.3.1",
"babel-preset-env": "1.7.0",
@@ -20,7 +18,7 @@
"gulp-postcss": "9.0.0",
"postcss": "8.3.6",
"postcss-import": "14.0.2",
- "tailwindcss": "2.2.7"
+ "tailwindcss": "^2.2.7"
},
"engines": {
"node": "12"
diff --git a/package.json b/package.json
index ac5036d..514c9e3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "status-vac",
- "version": "6.0.0",
+ "version": "1.0.0",
"main": "gulpfile.babel.js",
"devDependencies": {
"autoprefixer": "10.3.1",
@@ -14,7 +14,7 @@
"gulp-postcss": "9.0.0",
"postcss": "8.3.6",
"postcss-import": "14.0.2",
- "tailwindcss": "2.2.7"
+ "tailwindcss": "^2.2.7"
},
"engines": {
"node": "12"
diff --git a/src/style.css b/src/style.css
index 671d1d2..bfe0379 100644
--- a/src/style.css
+++ b/src/style.css
@@ -6,25 +6,8 @@ html {
scroll-behavior: smooth;
}
-h1 {
- font-size: 32px;
- line-height: 44px;
-}
-
-h2 {
- font-size: 14px;
- line-height: 22px;
- font-weight: 600;
-}
-
.link--external {
- font-style: italic;
- font-weight: 600;
- font-size: 12px;
- line-height: 16px;
- padding-left: 12px;
- position: relative;
- transition: all 0.3s;
+ @apply relative italic font-semibold text-xs pl-3 transition-all duration-300;
}
.link--external::before {
@@ -52,58 +35,3 @@ h2 {
.link--external:hover::after {
background-color: #151512;
}
-
-.nav {
- max-width: 680px;
-}
-
-.nav-mobile {
- height: 73%;
-}
-
-.section__text {
- font-style: italic;
- font-weight: normal;
- font-size: 14px;
- line-height: 170%;
-}
-
-.work__heading {
- font-size: 32px;
- line-height: 44px;
- font-weight: 700;
-}
-
-.work__text {
- font-size: 14px;
- line-height: 180%;
- opacity: 0.75;
- text-align: start;
- max-width: 370px;
-}
-
-@media (max-width: 1023px) {
- .work__heading {
- font-size: 18px;
- line-height: 25px;
- }
-
- .work__text {
- font-size: 12px;
- }
-}
-
-@media (max-width: 767px) {
- h1 {
- font-size: 24px;
- line-height: 33px;
- }
-
- .nav {
- max-width: 480px;
- }
-
- .section__text {
- font-size: 12px;
- }
-}
diff --git a/tailwind.config.js b/tailwind.config.js
index c0a0c47..2bd521e 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,11 +1,18 @@
module.exports = {
- purge: [`_site/**/*.html`],
+ purge: [`_site/**/*.html`, `_site/**/*.css`],
theme: {
- extend: {},
+ extend: {
+ backgroundImage: (theme) => ({
+ arrow: "url(/assets/img/arrow.svg)",
+ }),
+ },
screens: {
+ xxs: "370px",
xs: "450px",
+ xm: "480px",
sm: "570px",
s: { max: "570px" },
+ sl: "680px",
"md-max": { max: "768px" },
md: "768px",
"lg-max": { max: "1024px" },
@@ -24,12 +31,19 @@ module.exports = {
fontFamily: {
sans: ["Open Sans", "sans-serif"],
},
+ fontSize: {
+ xs: ["12px", "16px"],
+ s: ["12px", "20px"],
+ sm: ["14px", "22px"],
+ base: ["14px", "24px"],
+ l: ["18px", "25px"],
+ lg: ["20px", "28px"],
+ xl: ["24px", "32px"],
+ xxl: ["32px", "44px"],
+ },
colors: {
white: "#fff",
black: "#151512",
- grey: {
- test: "#242424",
- },
},
},
variants: {},