-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (70 loc) · 1.24 KB
/
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
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
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
}
h1 {
margin-top: 0;
text-align: center;
color: #333;
}
form {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
border-radius: 10px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #555;
}
input[type="text"], input[type="email"], input[type="password"], input[type="file"] {
display: block;
margin-bottom: 20px;
padding: 10px;
width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
color: #333;
}
input[type="submit"] {
display: block;
margin: 20px auto 0;
padding: 10px 20px;
background-color: #008CBA;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #00688B;
}
table {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
border-radius: 10px;
}
table th, table td {
padding: 10px;
text-align: center;
border: 1px solid #ccc;
}
table th {
background-color: #333;
color: #fff;
font-weight: bold;
}
img {
max-width: 100%;
height: auto;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}