-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (85 loc) · 1.87 KB
/
styles.css
File metadata and controls
97 lines (85 loc) · 1.87 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
:root {
--primary-color: #78c0e0;
--secondary-color: #a8e6cf;
--background-color: #D3F9FA;
--text-color: #333;
--link-text-color: #ffffff;
--container-background: #ffffff;
--container-shadow: rgba(0, 0, 0, 0.2);
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
padding: 0;
}
.container {
max-width: 700px;
margin: 50px auto;
text-align: center;
padding: 30px;
border-radius: 25px;
background: var(--container-background);
box-shadow: 0 10px 20px var(--container-shadow);
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
color: #4a4a4a;
text-shadow: 2px 2px #d1c4e9;
}
p {
font-size: 1.4em;
line-height: 2;
margin: 10px 0;
color: #555;
text-shadow: 1px 1px #eceff1;
}
.links {
margin-top: 25px;
}
.link {
text-decoration: none;
color: var(--link-text-color);
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 12px 30px;
border-radius: 30px;
margin: 10px;
display: inline-flex;
align-items: center;
font-size: 1.2em;
font-weight: bold;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.link:hover {
transform: scale(1.1);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.link img {
width: 24px;
height: 24px;
margin-right: 8px;
}
.profile-image {
width: 180px;
height: 180px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
border: 4px solid var(--secondary-color);
}
footer {
margin-top: 50px;
font-size: 1em;
color: #888;
}
footer a {
color: var(--primary-color);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}