Web Page CSS - Code

From RoboWiki
Jump to: navigation, search

Return back to project page: Avalanche Cannon - Jakub Vojtek

Python code for the Web app CSS:

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.camera-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls-top, .controls-bottom {
    margin-bottom: 10px;
}

.camera-container {
    display: flex;
    align-items: center;
}

.side-button {
    width: 100px;
    height: 40px;
    margin: 0 10px;
}

#cam {
    width: 640px;
    height: 480px;
}

.canvas-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.canvas-top {
    margin-bottom: 10px;
}

.canvas-container {
    margin-bottom: 10px;
}

.trigger-button {
    width: 200px;
    height: 50px;
}