-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.css
More file actions
97 lines (93 loc) · 1.82 KB
/
help.css
File metadata and controls
97 lines (93 loc) · 1.82 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
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
.container{
/* border: 2px solid red; */
display: flex;
height: 100vh;
justify-content: space-evenly;
flex-wrap: wrap;
}
.user_interface{
/* border: 2px solid black; */
width: 30%;
margin: auto;
/* display:flex;
flex-direction: column;
justify-content:center; */
}
.text_display{
/* border: 2px solid blue; */
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
width: 40%;
margin: auto;
}
.text_display h1{
color: blue;
}
.text_display h3{
color: rgb(24, 24, 24);
}
.name_input{
/* border: 2px solid green; */
display: flex;
justify-content: space-between;
}
#fname, #lname, #input_email, #message{
height: 50px;
width: 48%;
outline: none;
margin: 10px 0;
padding: 15px;
font-size: large;
background-color: rgba(105, 105, 105, 0.24);
border: none;
border-radius: 6px;
box-shadow: 0 0 4px;
}
#fname:hover, #lname:hover, #input_email:hover, #message:hover{
box-shadow: 0 0 8px;
transition-duration: 0.2s;
}
.details{
display: flex;
flex-direction: column;
}
#input_email{
width: 100%;
/* border: 2px solid orange; */
}
#message{
/* border: 2px solid yellowgreen; */
width: 100%;
height: 150px;
}
.submit_button{
float:right;
background-color: rgb(0, 81, 173);
color: white;
font-size: large;
outline: none;
border: none;
border-radius: 4px;
width: 100%;
margin: 23px 0;
height: 40px;
margin-top: 23px;
box-shadow: 0 0 6px black;
}
.submit_button:hover{
box-shadow: 0 0 12px black;
}
.submit_button:active{
background-color: rgb(1, 86, 143);
transform: scale(1.01);
transition-duration: 0.3s;
}
#or{
color: grey;
text-align: center;
font-size: large;
}