-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.css
More file actions
58 lines (42 loc) · 750 Bytes
/
Copy pathindex1.css
File metadata and controls
58 lines (42 loc) · 750 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
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
min-width: 400px;
}
/*
Style our app according to the provided design!
green color -> #5f9341
*/
input {
width: 100%;
padding-left: 10px;
padding-right: 10px;
box-sizing: border-box;
border: 1px solid #5f9341;
height: 30px;
}
button {
background-color: #5f9341;
color: white;
height: 30px;
border: 1px solid #5f9341;
margin-top: 5px;
font-weight: bold;
}
button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
ul{
padding-left: 0;
margin-top: 20px;
}
li {
list-style-type:none;
margin-top: 5px;
}
li a {
color:green;
}