mitmproxy/web/src/css/flowview.less

34 lines
564 B
Plaintext
Raw Normal View History

2015-03-21 23:21:38 +00:00
.flowview-image {
2015-03-21 23:28:08 +00:00
text-align: center;
2015-03-21 23:21:38 +00:00
2015-03-21 23:28:08 +00:00
img {
max-width: 100%;
max-height: 100%;
}
2016-07-15 12:41:30 +00:00
}
.edit-flow {
position: absolute;
right: 25px;
top: 140px;
height: 40px;
width: 40px;
border-radius: 20px;
background-color: white;
border: solid 2px rgba(248, 145, 59, 0.7);
text-align: center;
font-size: 22px;
line-height: 37px;
transition: all 100ms ease-in-out;
}
.edit-flow:hover {
background-color: rgba(239, 108, 0, 0.7);
color: rgba(0,0,0,0.8);
border: solid 2px transparent;
}