-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (36 loc) · 708 Bytes
/
style.css
File metadata and controls
39 lines (36 loc) · 708 Bytes
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
h1 {
text-align: center;
}
table {
width: 800px;
border: 1px solid black;
margin: 0px auto;
}
th {
border-bottom: 1px solid black;
padding: 10px;
}
td {
padding: 10px 15px;
border-bottom: 1px solid lightcoral;
text-align: center;
}
.buttonMain{
width: 100%;
text-align: center;
margin-bottom: 20px;
margin-top: 20px;
}
.buttonMain button{
border: none;
padding: 10px;
border-radius: 10px;
cursor: pointer;
background-color: blue;
color: white;
}
.buttonMain button:hover{
transition: 0.3s ease-in all;
background-color: lightskyblue;
color: blue;
}