-
Notifications
You must be signed in to change notification settings - Fork 0
/
find_a_therapist.css
113 lines (108 loc) · 2.14 KB
/
find_a_therapist.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
*{
margin: 0;
padding: 0;
font-family: 'Mooli', sans-serif;
}
.ul img{
height: 50px;
width: 50px;
transition: all 0.2s ease-in-out;
}
.ul img:hover{
transform: scale(1.2,1.2);
}
.ul{
list-style-type: none;
margin: 0;
padding: 0;
background-color: #f9e4e3;
display: flex;
height: 60px;
width: 100%;
justify-content: space-evenly;
align-items: center;
}
.li a{
color: burlywood;
background-color: rgba(255, 255, 255, 0.1);
text-shadow: 1px 1px 1px black;
text-decoration: none;
font-size: 20px;
padding: 20px;
}
.li :hover {
box-shadow: 0 0 4px rgba(255, 255, 255, 1);
color: rgba(222, 184, 135, 0.605);
background-color: #fbc9d69a;
}
h1{
color: black;
text-shadow: 1px 1px 4px black;
font-size: 40px;
text-align: center;
margin-top: 20px;
}
.hero_txt{
font-size: 20px;
text-align: center;
margin: 40px;
color: rgb(87, 79, 87);
}
h2{
color: burlywood;
text-shadow: 1px 1px 2px black;
margin: 10px;
}
input[type="text"],
select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px;
}
.search-container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
border: 1px solid #ccc;
background-color: linear-gradient(to left, #ffffff 0%,#f9e4e3 70%);
box-shadow: 0 0 10px rgba(0, 0, 0, 1);}
form {
display: flex;
flex-wrap: wrap;
justify-content: left;
}
label{
background-color: none;
padding: 10px 0 10px 10px;
color: burlywood;
text-shadow: 1px 1px 2px black;
font-size: 18px;
}
input,
select {
background-color: #f9e4e3;
color: black;
border: none;
border-radius: 5px;
cursor: pointer;
}
button{
border-radius: 25px;
background-color: #fff;
border: 3px solid #f9e4e3;
padding: 10px;
margin-left: 10px;
color: burlywood;
font-weight: 600;
text-shadow: 1px 1px 2px black;
}
.results-container {
max-width: 800px;
margin: 20px auto;
}
ul {
list-style: none;
padding: 20px;
}