-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (52 loc) · 1021 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
body {
font-family: Arial, sans-serif;
background-color: #F2F4F4;
margin: 0;
padding: 0;
}
.container {
width: 100%;
max-width: 500px;
margin: 50px auto;
background: #FFFFFF;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #154360;
text-align: center;
}
.button {
display: block;
width: 100%;
padding: 10px;
background-color: #5DADE2;
color: #FFFFFF;
text-align: center;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
.button:hover {
background-color: #E67E22;
}
.link {
display: block;
margin-top: 10px;
text-align: center;
color: #5DADE2;
text-decoration: none;
cursor: pointer;
}
.link:hover {
text-decoration: underline;
}
input[type="text"], input[type="email"], input[type="password"], input[type="file"], select {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #CCC;
border-radius: 4px;
}