-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·60 lines (53 loc) · 1.06 KB
/
styles.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
body, main, .group, label, .group-input, input, button {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
body {
display: flex;
flex-direction: column;
padding: 5px;
font-family: Verdana;
font-size: 12;
color: rgba(255, 255, 255, 1);
}
.group {
display: flex;
flex-direction: column;
width: 620px;
height: 63px;
}
.br {
height: 10px;
}
label {
margin-bottom: 5px;
height: 20px;
}
.group-input {
display: flex;
flex-direction: row;
width: 620px;
}
input {
padding: 5px;
margin-right: 5px;
width: 550px;
min-height: 25px;
line-height: 1.6;
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(221, 221, 221, 1);
border-radius: 4px;
font-family: "Courier New";
text-align: center;
}
button {
width: 65px;
min-height: 25px;
line-height: 1.6;
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(221, 221, 221, 1);
border-radius: 4px;
font-weight: bold;
}