-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (106 loc) · 2.43 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (106 loc) · 2.43 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
body {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
background-color: #1a1a2e;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
width: 100%;
max-width: 450px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
background-image: linear-gradient(135deg, #1e3c72, #2a5298);
border-radius: 15px;
margin-top: -40px;
}
.app-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
color: #fff;
background-color: rgba(255, 255, 255, 0.1);
padding: 2rem;
border-radius: 15px;
width: 100%;
}
.headings-container h1 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
color: #fff;
}
.headings-container h3 {
font-size: 1rem;
margin-bottom: 1.5rem;
color: #f2f2f2;
opacity: 0.8;
}
.interaction-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
padding: 0 1rem;
width: 100%;
}
.text-control {
padding: 1rem;
margin: 1rem 0 1.5rem 0;
background-color: rgba(63, 70, 74, 0.8);
color: #fff;
border: 2px solid #00c9ff;
border-radius: 10px;
width: 90%;
font-size: 1rem;
transition: border 0.3s ease, box-shadow 0.3s ease;
resize: none;
}
.text-control:focus-visible {
outline: none;
border: 2px solid #ff6b6b;
box-shadow: 0 0 10px #ff6b6b;
}
.btn {
padding: 0.8rem 1.5rem;
background-image: linear-gradient(45deg, #ff6b6b, #f857a6);
border: 1px solid transparent;
border-radius: 50px;
color: #fff;
cursor: pointer;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
margin-top: -40px;
}
.btn:hover {
transform: translateY(-3px);
background-image: linear-gradient(45deg, #e25555, #d1478e);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
footer {
background-color: linear-gradient(135deg, #1e3c72, #2a5298);
color: #9ea7ad;
text-align: center;
padding: 5px;
border-top: 2px solid #084146;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 1rem;
}