-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (80 loc) · 1.88 KB
/
style.css
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
html,
body {
height: 100%;
width: 100%;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(to bottom, var(--dynamic-color-1), var(--dynamic-color-2));
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
textarea {
width: 60%;
height: 250px;
padding: 20px;
border: none;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
font-size: 18px;
color: #333;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
transition: box-shadow 0.3s ease, transform 0.3s ease;
resize: none;
outline: none;
}
textarea:focus {
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
transform: scale(1.05);
}
::placeholder {
color: #888;
opacity: 0.8;
}
button {
margin-top: 20px;
padding: 10px 20px;
border: none;
border-radius: 10px;
background-color: #FF7E5F;
color: white;
font-size: 16px;
cursor: pointer;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover {
background-color: #FEB47B;
transform: scale(1.05);
}
.header {
display: flex;
flex-direction: column; /* Stacks logo and name vertically */
align-items: center; /* Centers them horizontally */
margin-top: 20px;
margin-bottom: 20px; /* Space between header and textarea */
}
.logo {
width: 100px; /* Adjust width as needed */
height: auto; /* Maintain aspect ratio */
}
.app-name {
font-size: 24px; /* Adjust font size as needed */
color: #333; /* Adjust color as needed */
margin-top: 10px; /* Space between logo and name */
}
.icon-credits {
margin-top: 20px;
text-align: center;
font-size: 14px;
color: #555; /* Adjust the color as needed */
}
.icon-credits a {
color: #FF7E5F; /* Match with button color */
text-decoration: none;
}
.icon-credits a:hover {
text-decoration: underline;
}