-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneww.css
65 lines (56 loc) · 841 Bytes
/
neww.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
body {
background: yellow;
text-align:center;
}
.green { background-color: pink;}
.blue { background-color: blue; }
#main {
width: 1000px;
height: 600px;
background: red;
margin: 25px auto;
border: solid 2px #ff3819;
padding: 10px;
}
h1 {
text-align: center;
font-family:"Times New Roman";
font: 24pt;
color:orange;
}
hr {
height: 2px;
color: black;
}
p {
font-family:"Calibri";
font-size: 12pt;
text-align: left;
text-indent: 48px;
color: white;
}
table {
border: 2px solid green;
background-color: solid white;
}
tbody {
color: pink;
}
tfoot{
color: purple;
}
thead{
color: orange;
}
tr {
border: 2px solid green;
}
th {
border: 2px solid green;
}
.form-row{
display: flex;
}
.form-row input {
flex:1;
}