-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmsstyle2.css
More file actions
56 lines (46 loc) · 770 Bytes
/
cmsstyle2.css
File metadata and controls
56 lines (46 loc) · 770 Bytes
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
#messages {
/* This must be added to the grid */
border-style : solid;
display : grid;
height : 435px;
}
nav {
grid-row-start: 1;
grid-row-end: 3;
grid-column-start : 1;
grid-column-end : 1;
border-style: groove;
border-color : yellow;
background : red;
margin : 15px;
margin-left : 10px;
}
img {
display : block;
border-style : groove;
margin : auto;
}
nav .a {
font-size : 2em;
display : block;
border-style : none;
margin : 10px;
background : yellow;
}
section
{
grid-row-start: 1;
grid-row-end: 3;
grid-column-start : 2;
grid-column-end : 5;
border-style:groove;
border-style : groove;
border-color : yellow;
overflow-x: hidden;
overflow-y: scroll;
margin : 15px;
}
form button {
width : 500px;
height :80px;
}