-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (86 loc) · 1.81 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (86 loc) · 1.81 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
body {
background-image: radial-gradient(#497C44 0.8px, #F6EDD9 0.8px);
background-size: 18px 18px;
text-align: center;
font-family: 'Patrick Hand', cursive;
font-weight: bold;
margin: 0;
padding: 0;
}
#board {
max-width: 80%;
margin: 0 auto;
aspect-ratio: 1.2;
max-height: 80vh;
background-size: 100% 100% !important;
background: url(./board_landscape.svg) no-repeat;
}
textarea {
margin-top: 4%;
width: 90%;
height: 74%;
border: none;
box-sizing: border-box;
background-color: transparent;
color: #F6EDD9;
border-radius: 10px;
font-family: 'Tilt Neon', cursive;
font-size: 19px;
resize: none;
overflow: auto;
}
textarea:focus-visible {
outline: transparent;
}
h1 {
color: #0081AD;
font-size: 40px;
}
footer {
color: white;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: url(./dandelion.png);
background-size: contain;
height: 5vh;
z-index: -1;
}
footer span {
background-color: #007ea165;
color: white;
position: fixed;
right: 0;
bottom: 0;
padding: 0 5px;
font-size: 14px;
}
button {
position: fixed;
bottom: 3em;
left: 50%;
transform: translateX(-50%);
width: fit-content;
border-radius: 50px;
font-family: 'Patrick Hand', cursive;
background: radial-gradient(circle, #2D9584 0%, #3EA594 100%);
padding: 5px 20px;
border: none;
box-shadow: 1px 3px 5px #3E4A3C;
font-size: 25px;
color: #DDF8D7;
}
@media (max-width: 760px) {
#board {
background-size: 100% 100% !important;
background-repeat: no-repeat !important;
background: url(./board_portrait.svg);
aspect-ratio: 0.6;
}
textarea {
margin-top: 7%;
width: 90%;
height: 75%;
}
}