-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 895 Bytes
/
style.css
File metadata and controls
61 lines (52 loc) · 895 Bytes
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
body {
font-family: "Open Sans", sans-serif;
}
.wrapper {
margin: 0 auto;
width: 60%;
padding: 0 10px;
}
legend {
font-weight: bold;
}
input {
margin: 0;
box-sizing: border-box;
width: 150px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 12px;
height: auto;
margin: 8px 0;
}
input[type="password"] {
margin: 4px 0;
}
input[type="button"] {
background-color: grey;
border: none;
color: black;
text-decoration: none;
font-weight: bold;
height: auto;
padding: 8px 12px;
margin: 4px 0;
cursor: pointer;
}
input[type="text"]:focus {
background-color: lightblue;
}
#messages {
margin: 12px 0;
padding: 12px;
width: 100%;
display: inline-block;
border: 1px solid black;
height: 250px;
overflow-y: scroll;
}
#messages span {
overflow-y: scroll;
}