-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (73 loc) · 1.43 KB
/
index.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
.font {
font: 25px arial, sans-serif;
padding-left: 20px;
}
html, body {
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
.topText {
text-align: left;
margin-top: 2px;
margin-left: 10px;
color: gray;
font: italic 12px arial, sans-serif;
}
.boxText {
font: 15px arial, sans-serif;
margin-left: 30px;
}
#boxRightText {
margin-top: 30px;
}
#graftext {
margin-left: 20px;
}
.input {
width: 65px;
height: 25px;
margin-left: 30px;
margin-bottom: 5px;
}
.boxleft {
width: 200px;
height: 180px;
float:left;
border: black solid thin;
box-sizing: border-box;
}
.boxright{
border-style: solid solid solid none;
border-width: thin;
width: 200px;
height: 180px;
float:left;
box-sizing: border-box;
}
.button {
background: rgba(0, 255, 0, 0.774);
border-radius: 10px;
width: 78px;
height: 38px;
text-align: center;
line-height: 35px;
justify-content: center;
border: black solid thin;
margin-left: 30px;
cursor: pointer;
user-select: none; /* Standard */
}
::-webkit-input-placeholder { /* Edge */
margin-left:10px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
margin-left:10px;
}
::placeholder {
margin-left:10px;
}
:required {
background: red;
}