-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.css
96 lines (83 loc) · 1.44 KB
/
welcome.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
margin: 0;
padding: 20px;
font-family: "Arial", sans-serif;
background-color: #20243a;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
box-sizing: border-box;
}
.container {
text-align: center;
background-color: #34495ee6;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
max-width: 800px;
width: 100%;
box-sizing: border-box;
overflow-y: auto;
max-height: calc(100vh - 40px);
}
h1 {
color: #ecf0f1;
}
h2 {
color: #c5c5c5;
}
h3 {
color: #ecf0f1;
margin-top: 20px;
}
p,
ul {
margin: 20px 0;
font-size: 1.2em;
text-align: left;
}
a {
color: #03dac6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
button {
background-color: #ff0000;
border: none;
border-radius: 8px;
color: #ffffff;
cursor: pointer;
font-size: 1rem;
padding: 15px;
text-align: center;
text-decoration: none;
transition: transform 0.2s, background-color 0.3s;
width: 100%;
max-width: 200px;
}
button:hover {
background-color: #00d312;
transform: scale(1.05);
}
.logo {
width: auto;
height: 128px;
margin-bottom: 10px;
}
hr {
border: 1px solid #000000;
margin: 20px 0;
}
.section {
text-align: center;
}
.banner {
width: auto;
height: 30vh;
margin-bottom: 10px;
border-radius: 3vh;
}