-
Notifications
You must be signed in to change notification settings - Fork 0
/
400CB.testservice.grid.css
110 lines (80 loc) · 1.63 KB
/
400CB.testservice.grid.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
105
106
107
108
109
110
h3 {
font-size: 1.4em;
}
#titlebar{
background-color: lightsteelblue;
display: grid;
grid-template-columns: repeat(2, 3fr) 2fr 1fr;
grid-template-rows: repeat(2,1fr);
grid-template-areas:
"formspec companyname companyname brand"
"devicespec formname devicespec2 devicespec2";
}
#form-spec{
grid-area: formspec;
}
#company-name{
grid-area: companyname;
}
#device-spec2{
grid-area: devicespec2;
}
/* form Section */
.formsection{
display: grid;
grid-template-columns: 1fr 4fr;
border: 2px solid;
margin: 10px;
align-items: center;
background-color: aliceblue
}
.formsectiontitle{
grid-column: 1/2;
justify-self: center;
}
.checkitem{
display: grid;
grid-template-columns: repeat(4,1fr);
border: 1px solid;
margin: 2px;
/* justify-items: center; */
}
.checkitemtitle{
font-size: 1.1em;
font-weight: bold;
grid-column: 1/2;
}
.checkitemfieldpola{
background-color: lightblue;
padding: 0 20px;
}
.checkitemfieldpolb{
background-color: lightyellow;
padding: 0 20px;
}
.checkitemfieldpolc{
background-color: lightsalmon;
padding: 0 20px;
}
/* form section end */
/* Special form Section */
.formsectionspecial{
display: grid;
grid-template-columns: 2fr 3fr;
border: 2px solid;
margin: 10px;
align-items: center;
background-color: beige;
}
.formsectionspecial .checkitem{
grid-template-columns: repeat(3,1fr);
align-items: center;
}
/* Special form section end */
#specbar{
background-color: lightgoldenrodyellow;
}
.header{
border-style: double;
border-color: black;
}