-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (83 loc) · 1.39 KB
/
styles.css
File metadata and controls
98 lines (83 loc) · 1.39 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
body {
background-image: url("Images/WashedOutBlackWP.jpeg");
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
}
img {
width: 200px;
height: 100px;
}
.horizontalwhiteline {
border-bottom: 2px solid white;
height: 5px;
width: 200px;
margin-left: auto;
margin-right: auto;
}
.content {
max-width: max-content;
margin: auto;
}
h1 {
color: white;
font-size: 40px;
}
h2 {
color: yellow;
font-size: 30px;
}
h3 {
color: white;
font-size: 25px;
}
h4 {
color: yellow;
font-size: 22px;
}
a {
color:white;
font-weight: bold;
}
table, th, td {
table-layout: fixed;
width: 100%;
border: 2px solid black;
color: black;
background-color: yellow;
}
#ul01 {
display: table;
margin: auto;
align-items: center;
list-style-type: bullet;
color: white;
border: white;
border-style: groove;
}
#ul02 {
display: table;
margin: auto;
align-items: center;
list-style-type: square;
color: white;
border: white;
border-style: ridge;
}
ol {
color: white;
display: table;
margin: auto;
}
.formborder {
border-radius: 5px;
}
input[type=submit] {
padding: 5px 15px;
background:yellow;
color: black;
font-weight: bold;
border:0 none;
cursor: pointer;
-webkit-border-radius: 5px;
border-radius: 5px;
}