-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
50 lines (43 loc) · 766 Bytes
/
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
body {
width: 100%;
margin: 0;
text-align: center;
background-color: #515472;
background-image: url("img/background.jpg");
background-size: 100%;
color: gray;
}
h1 {
width: 100%;
text-align: center;
}
div {
margin: 20px;
}
input {
min-width: 100px;
background-color: transparent;
color: darkgreen;
padding: 5px;
border-color: darkgreen;
border-left: hidden;
border-top: hidden;
border-right: hidden;
}
label {
font-weight: bold;
font-size: 1.17em;
}
button {
padding: 5px;
background-color: gray;
background-color: #2a7d30;
border-radius: 2px;
border-width: 0;
}
#error {
color: red;
font-weight: bold;
font-size: 1.17em;
visibility: hidden;
}