-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSite.css
More file actions
99 lines (84 loc) · 1.58 KB
/
Copy pathSite.css
File metadata and controls
99 lines (84 loc) · 1.58 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
body {
font-family: Arial, sans-serif;
background: red;
margin: 0;
padding: 0;
}
.container {
width: 90%;
margin: 40px auto;
background: #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
h2, h3 {
text-align: center;
color: #333;
}
/* Form Area */
.form-area {
width: 50%;
float: left;
}
.form-area input,
.form-area select {
width: 90%;
padding: 10px;
margin: 10px 0;
border-radius: 6px;
border: 1px solid #ccc;
}
button {
background: #ff5722;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background: #e64a19;
}
/* Image Area */
.image-area {
width: 45%;
float: right;
text-align: center;
}
.image-area img {
width: 90%;
height:auto;
border-radius: 12px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
/* Table Design */
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table th {
background: #3f51b5;
color: white;
padding: 10px;
}
table td {
padding: 10px;
text-align: center;
background: #f9f9f9;
}
table tr:nth-child(even) {
background: #e3f2fd;
}
a {
text-decoration: none;
color: #ff5722;
font-weight: bold;
}
a:hover {
color: #d84315;
}
.clear {
clear: both;
}