-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
55 lines (47 loc) · 837 Bytes
/
style.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
.container {
max-width: 500px;
margin: 0 auto;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
font-size: 36px;
margin-bottom: 30px;
}
input[type="text"] {
width: 80%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px;
}
button {
width: 18%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
border-bottom: 1px solid #ccc;
padding: 10px;
font-size: 18px;
}
li:last-child {
border-bottom: none;
}