-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (89 loc) 路 1.78 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (89 loc) 路 1.78 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
padding: 50px 20px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
color: #212529;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
h1 {
margin-bottom: 10px;
font-size: 2.2rem;
color: #0d6efd;
}
p {
margin-bottom: 30px;
font-size: 1.1rem;
color: #6c757d;
}
.buttons-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
max-width: 900px;
margin: 0 auto 40px auto;
}
a {
text-decoration: none;
}
button {
padding: 12px 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
border-radius: 8px;
border: none;
background-color: #0d6efd;
color: #ffffff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease-in-out;
}
button:hover {
background-color: #0b5ed7;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
footer {
font-size: 0.95rem;
color: #6c757d;
padding-top: 20px;
border-top: 1px solid #dee2e6;
}
footer a {
color: #0d6efd;
font-weight: 600;
}
footer a:hover {
text-decoration: underline;
}
/* body
{
text-align: center;
padding: 50px;
font-family: "Arial Black", "Segoe UI", "Tahoma" , "Cambria";
}
h1
{
margin-bottom:10px;
}
p
{
margin-bottom:30px;
}
button
{
padding: 12px 25px;
margin: 10px;
font-size: 18px;
cursor: pointer;
border-radius: 10px;
} */