-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (68 loc) · 1.32 KB
/
style.css
File metadata and controls
78 lines (68 loc) · 1.32 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
body{
background-color:darkslategray}
h1 {
background-color: #333;
color: white;
text-align: center;
padding: 20px 40px;
margin: 30px 50px;
border-radius: 5px;
}
p {
font-family: Arial, Helvetica, sans-serif;
color:black;
background-color:gold;
font-size: 16px;
text-align: center;
padding: 20px 40px;
margin: 30px 50px;
border-radius: 5px;
}
button {
background-color:purple;
color: white;
padding: 10px 20px;
border: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
border: none;
}
button:hover{
background-color: darkred;
}
table{
background-color: lightblue;
border-radius: 5px;
font-family: sans-serif;
flex-direction: column;
border: none;
}
table :hover{
background-color:cyan
}
footer{
background-color:chartreuse;
color:black;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
margin: 20px 20px;
padding: 30px 30px;
border-radius: 5px;
}
footer:hover{
background-color:cyan;
color: #333;
}
input{
font-family: Arial, Helvetica, sans-serif;
color: red;
font-size: large;
}
input:hover{
background-color:black;
}