-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (64 loc) · 1.16 KB
/
style.css
File metadata and controls
73 lines (64 loc) · 1.16 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
/* Import Roboto font from Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700&display=swap");
/* Set font-family to Roboto for the entire document */
body {
font-family: "Roboto", sans-serif;
color: #4a148c;
}
button {
display: inline-block;
padding: 10px 25px;
font-size: 15px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4caf50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.button:hover {
background-color: #3e8e41;
}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
/* CSS style to split tables horizontally */
table {
display: inline-block;
margin: 20px;
border-collapse: collapse;
background-color: #f5f5f5;
color: #428bca;
}
th,
td {
border: 1px solid black;
padding: 5px;
}
th {
background-color: #428bca;
color: #ffffff;
}
td {
background-color: #e9ecef;
}
h1 {
color: #428bca;
}
h2 {
color: #5cb85c;
}
h3 {
color: #d9534f;
}
/* CSS style for the count element */
#count-display {
font-size: 15px;
font-weight: bold;
margin-bottom: 10px;
}