init
This commit is contained in:
parent
06f61d8ce8
commit
f301cb744d
2271 changed files with 103162 additions and 0 deletions
56
02-ui/05-widgets/08-widget-tasks-2/03-window-manager/solution/window.css
Executable file
56
02-ui/05-widgets/08-widget-tasks-2/03-window-manager/solution/window.css
Executable file
|
@ -0,0 +1,56 @@
|
|||
|
||||
.window {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
|
||||
width: 200px;
|
||||
height: 300px;
|
||||
border: 2px #ADD8E6 groove;
|
||||
/* раскомментировать для проверки, вылезает ли внешняя рамка за экран
|
||||
border: 2px red solid;
|
||||
*/
|
||||
background: white;
|
||||
}
|
||||
|
||||
.window-title {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
|
||||
background-color: #4169E1;
|
||||
color: white;
|
||||
text-align:center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.window-moving .window-title {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.window-message-form {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
width: 100%;
|
||||
|
||||
background: #ADD8E6;
|
||||
}
|
||||
|
||||
.window-content {
|
||||
height: 240px;
|
||||
padding: 3px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.window-message-text {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.window-message-submit {
|
||||
width: 70px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue