-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
149 lines (129 loc) · 2.86 KB
/
style.css
File metadata and controls
149 lines (129 loc) · 2.86 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
background: #f0f8fb; /* softer light blue background */
background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.15) 35px, rgba(255,255,255,.15) 70px);
background-size: 152px;
padding: 50px 42px;
line-height: 1.6;
color: #2c2c2c;
}
header {
text-align: center;
margin-bottom: 40px;
}
h1 {
background: linear-gradient(135deg, #a3d8f4, #7cc1e2); /* subtle gradient */
color: #1e1e1e;
padding: 18px 24px;
font-size: 32px;
border-radius: 14px;
display: inline-block;
box-shadow: 0 6px 12px rgba(0,0,0,0.1);
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.tagline {
color: #446677;
font-style: italic;
margin-top: 12px;
font-size: 18px;
}
#friends {
float: left;
width: 240px;
margin-right: 36px;
}
#entries {
float: left;
width: 640px;
}
.box {
background: #d0edfb;
border: 3px solid #5dbde0;
border-radius: 18px;
padding: 24px;
margin-bottom: 28px;
box-shadow: 0 6px 16px rgba(0,0,0,0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.box:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
#friends .box {
background: linear-gradient(135deg, #0094aa, #007a8f);
color: white;
}
#friends h2 {
color: white;
margin-bottom: 18px;
font-size: 22px;
border-bottom: 2px solid rgba(255,255,255,0.3);
padding-bottom: 8px;
}
#friends ul {
list-style: none;
}
#friends li {
margin: 12px 0;
}
#friends a {
color: #bfffd9;
text-decoration: none;
font-weight: bold;
transition: color 0.2s;
}
#friends a:hover {
color: #ffffff;
text-decoration: underline;
}
.entry h2 {
color: #005070;
margin-bottom: 12px;
font-size: 24px;
position: relative;
}
.entry h2::after {
content: '';
display: block;
width: 60px;
height: 4px;
background: #5dbde0;
margin-top: 8px;
border-radius: 2px;
}
.date {
display: inline-block;
background: #7cc1e2;
color: white;
padding: 6px 14px;
border-radius: 20px;
font-weight: bold;
font-size: 14px;
margin-bottom: 16px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.right-img {
float: right;
margin: 0 0 18px 24px;
border: 4px solid #7cc1e2;
border-radius: 10px;
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
max-width: 280px;
}
p {
line-height: 1.75;
text-align: justify;
margin-bottom: 18px;
text-justify: inter-word;
}
/* Simple clearfix */
.clearfix::after {
content: "";
display: table;
clear: both;
}