-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome-style.css
80 lines (69 loc) · 1.38 KB
/
welcome-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
71
72
73
74
75
76
77
78
79
80
body {
font-family: 'Arial', sans-serif;
background-color: #000000;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.welcome-container {
/* margin-top: 25%; */
color: white;
text-align: center;
padding: 20px;
background-color: #000000;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
font-family: 'Roboto', sans-serif; /* Replace 'Roboto' with the desired font */
}
h1 {
font-size: 2em;
font-family: 'Pacifico', cursive; /* Replace 'Pacifico' with another font for the heading */
color: #ffffff;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
}
footer {
bottom: 0px;
text-align: center;
color: #fff;
margin: auto; /* Center the footer horizontally */
padding: 20px;
}
footer p {
margin: 0;
}
footer a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
.tip {
margin-top: 20px;
background-color: #f7f7f7;
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tip p {
margin: 0;
color: #333;
}
.tip strong {
font-weight: bold;
}
@media (max-width: 600px) {
.welcome-container {
margin-top: 55%;
}
}