-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (57 loc) · 1.2 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
text-align: center;
}
body {
font-family: 'Poppins', sans-serif;
min-height: 400px;
background-image: url("./images/bg.jpg");
background-color: #111;
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
h1 {
font-family: 'Bebas Neue', cursive;
font-size: 46px;
letter-spacing: 2px;
color: white;
}
.container {
text-align: center;
padding: 20px;
height: 100vh;
}
.page-title {
color: #ffffff;
margin: 0 0 5px;
}
.page-subtitle {
color: #ffffff;
margin-top: 5px;
}
.page-logo {
width: 200px;
}
table {
border: 2px solid white;
border-collapse: collapse;
}
th, tr, td {
border: solid 1px white;
color: white;
}
button {
color: black;
background-color: #DAA520;
border-radius: 26px;
padding: 3px 8px 3px 8px;
border: 2px solid black;
cursor: pointer;
}
input {
border-radius: 26px;
padding: 4px;
font-size: 12px;
}