-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
136 lines (115 loc) · 1.96 KB
/
style.css
File metadata and controls
136 lines (115 loc) · 1.96 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body,
h1 {
margin: 0;
padding: 0;
}
body {
background: rgb(255, 136, 0);
font-size: 125%;
font-family: Verdana, Geneva, Tahoma, sans-serif;
overflow: scroll;
}
h1 {
color: white;
background: rgb(186, 17, 219);
text-align: center;
border-bottom: 4px solid black;
width: 100%;
}
h1,
p,
caption,
td,
th,
fieldset,
select,
option,
label,
textarea,
button,
li {
font-size: xx-large;
}
img {
width: 8%;
height: auto;
float: left;
margin: 1% 1% 0 1%;
border-radius: 10px;
border: 4px solid black;
}
a {
color: rgb(186, 17, 219);
}
a:hover {
color: rgb(61, 204, 25);
}
table {
border-collapse: collapse;
text-align: center;
margin: 0 auto;
}
table th,
table td {
border: 4px solid black;
}
table tr:nth-child(odd) {
background: rgb(38, 126, 17);
}
table tr:nth-child(even) {
background: rgb(61, 204, 25);
}
table th.table-head {
background: rgb(186, 17, 219);
color: white;
}
table th,
td {
padding: 0.3em;
}
form {
margin-left: 1em;
}
textarea {
resize: none;
}
textarea:focus,
select:focus {
outline: none;
border: 4px solid rgb(186, 17, 219);
border-radius: 3px;
}
form fieldset {
width: 40vw;
border: 4px solid black;
background: rgb(38, 126, 17);
margin: 3em auto 0;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.575);
}
form legend {
background: rgb(186, 17, 219);
border: 4px solid black;
color: white;
}
form fieldset label {
display: block;
margin: 0.2em 0;
}
form fieldset select,
form fieldset textarea {
display: block;
width: 40vw;
background: rgb(61, 204, 25);
border: 4px solid black;
}
form button,
button#submit {
margin-top: 0.5em;
background: rgb(186, 17, 219);
border: 4px solid black;
color: white;
}
p,
ul {
margin-left: 1em;
}