-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylest.css
More file actions
99 lines (78 loc) · 1.5 KB
/
stylest.css
File metadata and controls
99 lines (78 loc) · 1.5 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 {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f3f3f3;
color: #333;
line-height: 1.6;
}
table[bgcolor="orange"] h2,
table[bgcolor="orange"]
p {
color: black;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
table[bgcolor="orange"] {
background: linear-gradient(90deg, #ff9800, #ff5722);
color: white;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
table[bgcolor="orange"] h2 {
margin: 10px 0;
font-size: 28px;
}
table[bgcolor="orange"] a {
color: white;
text-decoration: none;
font-weight: bold;
margin: 0 8px;
}
table[bgcolor="orange"] a:hover {
text-decoration: underline;
}
table[width="100%"]:not([bgcolor]) {
margin: 20px auto;
border-spacing: 20px;
}
td {
padding: 15px;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
td h3 {
border-left: 5px solid #ff5722;
padding-left: 10px;
margin-bottom: 10px;
color: #444;
}
ol li, ul li {
margin: 8px 0;
}
form input[type="text"],
form textarea {
width: 95%;
padding: 8px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
form input[type="submit"] {
background: #ff5722;
color: white;
border: none;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-weight: bold;
transition: 0.3s;
}
form input[type="submit"]:hover {
background: #e64a19;
}
table[bgcolor="green"] {
background: #2e7d32;
color: white;
margin-top: 20px;
font-size: 14px;
box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}