CryptoAssist/client/src/styles.scss

72 lines
1.0 KiB
SCSS
Raw Normal View History

2017-02-20 14:40:25 +00:00
html, body{
margin: 0;
border: 0;
font-family: sans-serif;
}
body{
display: flex;
flex-direction: column;
}
2017-02-20 15:22:16 +00:00
#blocks{
display: flex;
flex-direction: row;
2017-02-25 11:34:58 +00:00
overflow-x: scroll;
2017-02-20 15:22:16 +00:00
.block{
margin: 10px;
}
}
2017-02-20 14:40:25 +00:00
.block{
width: 200px;
height: 200px;
border: 1px solid black;
display: flex;
flex-direction: column;
2017-02-25 11:34:58 +00:00
flex-shrink: 0;
2017-02-21 10:16:51 +00:00
background-color: white;
2017-02-20 14:40:25 +00:00
.inputs{
display: flex;
flex-direction: row;
>div{
2017-02-20 15:22:16 +00:00
font-weight: bold;
2017-02-20 14:40:25 +00:00
border: 1px solid black;
flex-grow: 1;
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
}
.main{
flex-grow: 1;
display: flex;
>div{
margin: auto;
>.title{
text-align: center;
}
}
}
>.output{
2017-02-20 15:22:16 +00:00
font-weight: bold;
2017-02-20 14:40:25 +00:00
border: 1px solid black;
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
}
#workspace{
position: relative;
.block{
position: absolute;
}
2017-02-21 13:25:27 +00:00
.line{
border-top: 2px solid black;
position: absolute;
z-index: 1;
2017-02-21 16:58:48 +00:00
pointer-events: none;
2017-02-21 13:25:27 +00:00
}
2017-02-20 14:40:25 +00:00
}