-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (89 loc) · 2.13 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (89 loc) · 2.13 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body, .hero {
background: #F7FAFC;
color: #22223B;
}
.hero {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.hero h1 {
font-size: 45px;
font-weight: 500;
margin-top: -50px;
margin-bottom: 50px;
}
.hero h1 span {
color: #3A8A86;
}
textarea {
width: 600px;
height: 250px;
padding: 20px;
margin-bottom: 30px;
font-size: 15px;
color: #22223B;
border: 2px solid #3A8A86; /* More saturated border */
border-radius: 10px;
background: #FFFFFF; /* Slightly lighter than .hero */
resize: none;
box-shadow: 0 4px 16px 0 rgba(58,138,134,0.10); /* Subtle shadow */
transition: border-color 0.2s, box-shadow 0.2s;
}
textarea:focus {
border-color: #22223B; /* Even more contrast on focus */
box-shadow: 0 4px 24px 0 rgba(58,138,134,0.18);
outline: none;
}
.row {
width: 600px;
display: flex;
align-items: center;
gap: 20px;
}
button {
padding: 10px 30px;
border: 2px solid #B5C9CA; /* Match select border */
border-radius: 35px;
background: #E6F0EF; /* Lighter background for better contrast with black text/icon */
color: #000000;
font-size: 16px;
font-weight: 500;
cursor: pointer;
display: flex;
align-items: center;
transition: background 0.2s, border-color 0.2s;
}
button img {
width: 12px;
margin-right: 10px;
filter: none; /* Ensure icon stays black if SVG is black */
}
button:hover, button:focus {
background: #B5C9CA; /* Slightly darker on hover for feedback */
color: #000000; /* Keep text black */
}
select {
appearance: none;
color: #22223B;
background: #E6F0EF;
background-image: url(assets/dropdown.svg);
background-repeat: no-repeat;
background-size: 15px;
background-position-x: calc(100% - 20px);
background-position-y: center;
border: 2px solid #B5C9CA;
border-radius: 35px;
flex: 1;
height: 50px;
padding: 0px 20px;
}