-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (81 loc) · 1.6 KB
/
style.css
File metadata and controls
84 lines (81 loc) · 1.6 KB
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
81
82
83
84
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
font-family: "Roboto", sans-serif;
color: #333;
background-color: #f4f4f9;
margin: 0;
padding: 20px;
}
header{
background-color: #0066cc;
color: #fff;
padding: 20px;
text-align: center;
margin-bottom: 20px;
}
h1,h2{
text-align: center;
}
form{
max-width: 500px;
background-color: #fff;
margin: 0 auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
label{
display: block;
margin-bottom: 5px;
color: #333;
}
.register_form input{
width: 90%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
input[type="submit"] {
background-color: #0066cc;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #005bb5;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 10px;
text-align: center;
border: 1px solid #ddd;
}
th {
background-color: #0066cc;
color: white;
}
tr:nth-child(even) {
background-color: #f4f4f9;
}
img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto 20px auto;
border: 1px solid #ddd;
border-radius: 5px;
}
a{
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}