Masterdqqq/Facial_Expression_Recognition
1
1div.app-flex-container {2 display: flex;3 align-items: left;4}5 6div.app-flex-container > a {7 margin-left: 6px;8}9 10div.dl1 div.upload-container {11 height: 350px;12 max-height: 350px;13}14 15div.dl2 {16 max-height: 200px;17}18 19div.dl2 img {20 max-height: 200px;21}22 23div.dl5 {24 max-height: 200px;25}26 27div.dl5 img {28 max-height: 200px;29}30 31div.video1 div.video-container {32 height: 500px;33}34 35div.video2 {36 height: 200px;37}38 39div.video3 {40 height: 200px;41}42 43div.video4 {44 height: 200px;45}46 47div.stat {48 height: 286px;49}50 51div.settings-wrapper {52 display: none;53}54 55.submit {56 display: inline-block;57 padding: 10px 20px;58 font-size: 16px;59 font-weight: bold;60 text-align: center;61 text-decoration: none;62 cursor: pointer;63 border: var(--button-border-width) solid var(--button-primary-border-color);64 background: var(--button-primary-background-fill);65 color: var(--button-primary-text-color);66 border-radius: 8px;67 transition: all 0.3s ease;68}69 70.submit[disabled] {71 cursor: not-allowed;72 opacity: 0.6;73}74 75.submit:hover:not([disabled]) {76 border-color: var(--button-primary-border-color-hover);77 background: var(--button-primary-background-fill-hover);78 color: var(--button-primary-text-color-hover);79}80 81.clear {82 display: inline-block;83 padding: 10px 20px;84 font-size: 16px;85 font-weight: bold;86 text-align: center;87 text-decoration: none;88 cursor: pointer;89 border-radius: 8px;90 transition: all 0.3s ease;91}92 93.clear[disabled] {94 cursor: not-allowed;95 opacity: 0.6;96}97 98.submit:active:not([disabled]), .clear:active:not([disabled]) {99 transform: scale(0.98);100}