-
Notifications
You must be signed in to change notification settings - Fork 0
/
vici.css
105 lines (93 loc) · 2.01 KB
/
vici.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html {
height: 100%;
margin: 0;
padding:0;
width: 100%;
border: green solid 1px;
}
body {
background-color: aqua;
display: flex;
flex-direction: column;
background-color: white;
max-width: fit-content;
max-height: fit-content;
}
header {
position: fixed;
height: fit-content;
background-color: cornflowerblue;
top: 0px;
left: 0px;
right: 0px;
margin-top: 0px;
margin-bottom: 1rem;
padding: 1rem;
z-index: 10;
}
footer {
position: fixed;
height: fit-content;
background-color: cornflowerblue;
bottom: 0px;
left: 0px;
right: 0px;
margin-bottom: 0px;
margin-top: 1rem;
padding: 1rem;
z-index: 10;
}
details{
display: block;
box-shadow: 5px 5px 10px 2px rgba(0,0,0,.8);
width: fit-content;
padding:1rem;
background-color: antiquewhite;
}
section {
position: absolute;
flex-grow: 1;
background-color: white;
margin:0px;
padding:0px;
margin-top: 3rem;
margin-bottom:3rem;
width:100%;
height:auto
}
article {
position: fixed;
height: fit-content;
width: fit-content;
margin: 0px;
padding: 0px;
background-color: rgba(0,0,0,0);
}
article details {
height: fit-content;
width: auto;
min-width:fit-content;
min-height: fit-content;
max-height: fit-content;
position: static;
background-color: cornflowerblue;
}
article form {
height: fit-content;
width: fit-content;
padding: 1rem;
box-shadow: 5px 5px 10px 2px rgba(0,0,0,.8);
overflow:hidden;
background-color: antiquewhite;
}
article form input {
width: 100%;
}
.moving {
border: dashed cornflowerblue
}
nav {
display: inline-flex;
gap: 1rem;
background-color: cornflowerblue;
}