-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
111 lines (76 loc) · 1.48 KB
/
Copy pathlayout.css
File metadata and controls
111 lines (76 loc) · 1.48 KB
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
111
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
header{
/* border-style: solid; */
position: relative;
}
.header-btn{
display: flex;
/* border-style:solid ; */
/* justify-content: space-between; */
align-items: center;
justify-content: flex-end;
padding-right: 20px;
}
.header-btn a{
/* border-style:solid ; */
text-decoration: none;
color:black;
padding: 0px 20px;
font-size: 25px;
}
.header-btn a:hover{
color:blue;
/* background-color: blue; */
}
.logo{
width: 200px;
height: 100px;
margin-right: auto;
}
h1{
text-align: center;
}
.left-cont{
float: left;
width: 50%;
height: 300px; /* only for demonstration, should be removed */
background: #ccc;
padding: 20px;
}
.right-cont{
float: left;
padding: 20px;
width: 50%;
background-color: #f1f1f1;
height: 300px; /* only for demonstration, should be removed */
}
.mid-cont{
float: left;
padding: 20px;
width: 100%;
background-color: #f8b7b7;
height: 300px; /* only for demonstration, should be removed */
}
.last-cont{
float: left;
padding: 20px;
width: 100%;
background-color: #585757;
height: 300px; /* only for demonstration, should be removed */
}
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
.sec::after {
content: "";
display: table;
clear: both;
}
/* FORM CSS */