-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilestyle.css
More file actions
65 lines (59 loc) · 1.12 KB
/
Copy pathfilestyle.css
File metadata and controls
65 lines (59 loc) · 1.12 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
body {
margin: 0;
padding: 0;
background: url("CSS.jpg") no-repeat;
background-size: cover;
}
.container {
padding: 100px;
width: 280px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.container h1 {
float: left;
font-size: 40px;
margin-top: 1px;
margin-bottom: 50px;
padding: 13px 5px 5px;
text-align: center;
}
.styled-table {
border-collapse: collapse;
font-size: 1.1em;
width: 550px;
height: 400px;
border-radius: 5px 5px;
box-shadow: 0 0 20px;
text-align: center;
margin-left: -40%;
}
.styled-table thead tr {
background-color: #4caf50;
color: white;
text-align: left;
font-weight: bold;
font-size: 18px;
}
.styled-table th,
.styled-table td {
text-align: left;
padding: 12px 30px;
font-weight: bold;
}
.Back {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 70px;
text-align: center;
text-decoration: none;
font-size: 22px;
position: relative;
left: auto;
bottom: -50px;
border-radius: 20px;
border-bottom: 5px solid #4caf50;
}