-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.css
49 lines (45 loc) · 857 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
#band {
width: 100%;
height: 7px;
background-color: rgb(4, 166, 255);
margin-bottom: 50px;
}
h3, h2, h4 {
margin: 5;
columns: #ffffff;
text-align: center;
}
body {
background-color: #004445;
background-repeat : no-repeat;
margin: 0;
font-family: sans-serif;
color:white;
}
.container{
margin-left: 10px;
}
button {
width:auto;
background-color: rgb(0, 110, 255);
color: white;
padding: 10px 8px;
margin: 8px 0;
border: none;
border-radius:8px;
cursor: pointer;
}
input[type=text], input[type=number] {
padding: 7px 6px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button:active {
background-color: rgb(0, 81, 125);
}
button:hover {
opacity: 0.7;
}