Increased font size
This commit is contained in:
parent
262e4ec4d7
commit
036e9fa4a1
2
main.go
2
main.go
@ -14,7 +14,6 @@ import (
|
|||||||
"github.com/patrickmn/go-cache"
|
"github.com/patrickmn/go-cache"
|
||||||
|
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
fiberCache "github.com/gofiber/fiber/v2/middleware/cache"
|
|
||||||
"github.com/gofiber/fiber/v2/middleware/compress"
|
"github.com/gofiber/fiber/v2/middleware/compress"
|
||||||
"github.com/gofiber/fiber/v2/middleware/cors"
|
"github.com/gofiber/fiber/v2/middleware/cors"
|
||||||
"github.com/gofiber/fiber/v2/middleware/logger"
|
"github.com/gofiber/fiber/v2/middleware/logger"
|
||||||
@ -26,7 +25,6 @@ var content embed.FS
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := fiber.New()
|
app := fiber.New()
|
||||||
app.Use(fiberCache.New())
|
|
||||||
app.Use(compress.New())
|
app.Use(compress.New())
|
||||||
app.Use(cors.New())
|
app.Use(cors.New())
|
||||||
app.Use(logger.New())
|
app.Use(logger.New())
|
||||||
|
19
svg.tmpl
19
svg.tmpl
@ -42,15 +42,19 @@
|
|||||||
font-family: 'Roboto Bold';
|
font-family: 'Roboto Bold';
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 80px;
|
top: 100px;
|
||||||
left: 50px;
|
left: 50px;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
font-size: 70px;
|
font-size: 80px;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
line-height: 70px;
|
line-height: 75px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
display: -webkit-box !important;
|
||||||
|
-webkit-line-clamp: 4;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
white-space: normal;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-family: 'Roboto Medium';
|
font-family: 'Roboto Medium';
|
||||||
@ -58,6 +62,7 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50px;
|
top: 50px;
|
||||||
left: 50px;
|
left: 50px;
|
||||||
|
font-size: 40px;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
#profilePic {
|
#profilePic {
|
||||||
@ -70,11 +75,11 @@
|
|||||||
.tags {
|
.tags {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 50px;
|
left: 50px;
|
||||||
top: 400px;
|
top: 420px;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
font-size: 15px;
|
font-size: 25px;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -90,7 +95,7 @@
|
|||||||
bottom: 25px;
|
bottom: 25px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
font-size: 15px;
|
font-size: 20px;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -99,7 +104,7 @@
|
|||||||
fill: var(--foreground-color);
|
fill: var(--foreground-color);
|
||||||
}
|
}
|
||||||
.social span {
|
.social span {
|
||||||
margin: 0 3px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
.social svg:not(:first-of-type) {
|
.social svg:not(:first-of-type) {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
|
Loading…
Reference in New Issue
Block a user