Files
vue-flow/docs/assets/index.css
T

103 lines
1.7 KiB
CSS

#__nuxt {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
html,
body,
#__nuxt {
position: relative;
margin: 0;
min-height: 100%;
color: #111;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-image: url('./polygon-scatter.svg');
}
.backround-img {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-image: url('./polygon-scatter.svg');
}
.overview-example__add {
display: none;
}
.vue-flow__node a {
font-weight: 700;
color: #111;
}
.vue-flow__node.dark-node {
background: #0041d0;
color: #f8f8f8;
}
.vue-flow__node.dark {
background: #557;
color: #f8f8f8;
}
.vue-flow__node-selectorNode {
font-size: 14px;
background: #f0f2f3;
border: 1px solid #555;
border-radius: 5px;
text-align: center;
}
.vue-flow__node-selectorNode .vue-flow__handle {
border-color: #f0f2f3;
}
@media screen and (min-width: 768px) {
.overview-example__add {
display: block;
}
}
#vue-flow-examples {
@apply flex m-0 bg-white h-full;
height: 100vh;
text-transform: uppercase;
font-family: 'JetBrains Mono', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#vue-flow-docs {
@apply flex m-0 bg-white h-full;
h1 {
@apply text-4xl mb-4 font-bold;
}
p {
@apply text-lg font-qtype;
}
p ~ h1 {
@apply mt-6;
}
a {
@apply text-green-500 font-semibold hover:text-green-300;
}
li {
@apply mt-2;
list-style-type: circle;
}
}
.button {
@apply bg-gray-200 hover:bg-gray-300 focus:outline-none font-bold mr-2 border-2 p-2 rounded-xl;
}