-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (69 loc) · 1.56 KB
/
style.css
File metadata and controls
78 lines (69 loc) · 1.56 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
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #0d47a1;
color: #ffffff;
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
color: #82b1ff;
text-align: center;
margin: 20px 0;
font-weight: 700;
letter-spacing: 1px;
}
p {
color: #bbdefb;
line-height: 1.6;
margin: 10px 0;
padding: 0 20px;
}
a {
color: #90caf9;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.button {
background: linear-gradient(135deg, #1e88e5, #1565c0);
color: #ffffff;
border: 2px solid transparent;
border-radius: 8px;
padding: 14px 36px;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
transition: all 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
}
.button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
transform: skewX(-30deg);
transition: left 0.5s ease;
}
.button:hover {
background: linear-gradient(135deg, #1565c0, #0d47a1);
border-color: #ffffff;
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
transform: translateY(-3px);
}
.button:hover::before {
left: 100%;
}
.button:active {
transform: translateY(1px);
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}