-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (46 loc) · 676 Bytes
/
styles.css
File metadata and controls
55 lines (46 loc) · 676 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body {
text-align: center;
background: url("images.jpg");
background-repeat: no-repeat;
background-size: cover;
}
h1 {
font-family: Monoton;
font-size: 70px;
margin: 0.2em;
}
h2 {
margin: 1em 0 0.25em;
}
h2:first-of-type {
margin-top: 0.5em;
}
table,
tr,
td {
border: 1px solid black;
}
table {
border-collapse: collapse;
margin: 0 auto;
}
tr {
height: 20px;
}
td {
width: 20px;
}
input[type=number] {
width: 6em;
}
.btn {
background-color: green;
color: white;
border-radius: 0 10px;
padding: 0.5rem 1rem;
}
.btn:hover {
background-color: white;
color: gray;
transition: .2s;
}