Files
WeatherTool/web/src/css/FileManager.css
T

24 lines
373 B
CSS
Raw Normal View History

2023-05-15 16:37:03 +03:00
.container {
display: flex;
2023-05-23 00:46:07 +03:00
min-height: 100vh;
2023-08-07 23:25:35 +03:00
}
2023-05-15 16:37:03 +03:00
2023-08-07 23:25:35 +03:00
.column {
2023-05-15 16:37:03 +03:00
flex: 1;
padding: 10px;
box-sizing: border-box;
text-align: left;
2023-08-07 23:25:35 +03:00
}
2023-05-15 16:37:03 +03:00
2023-08-07 23:25:35 +03:00
.column:nth-child(1),
.column:nth-child(2) {
2023-05-15 16:37:03 +03:00
flex-basis: 15%;
background-color: #f2f2f2;
2023-07-04 00:20:13 +03:00
min-width: 200px;
2023-08-07 23:25:35 +03:00
}
2023-05-15 16:37:03 +03:00
2023-08-07 23:25:35 +03:00
.column:nth-child(3) {
2023-05-15 16:37:03 +03:00
flex-basis: 70%;
background-color: #e6e6e6;
2023-07-04 00:20:13 +03:00
min-width: 680px;
2023-08-07 23:25:35 +03:00
}