-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisnt-working.css
62 lines (56 loc) · 976 Bytes
/
isnt-working.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
.notworking {
max-width: 600px;
margin: 30px;
height: 77.9vh;
}
input .notworking[type="email"],
textarea .notworking {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: none;
width: 100%;
max-width: 500px;
}
textarea {
height: 200px;
resize: vertical;
}
.notworking input[type="submit"] {
padding: 10px 20px;
background-color: #2457cf;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.notworking input[type="submit"]:hover {
background-color: #444;
}
.notworking label {
font-size: 14px;
display: block;
text-align: left;
}
.notworking label[for="email"] {
font-size: 14px;
display: inline;
text-align: left;
}
.logout {
position: absolute;
top: 60px;
right: 30px;
}
.logout button {
padding: 5px 5px;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout button:hover {
background-color: #2457cf;
color: #ffffff;
}