-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
106 lines (92 loc) · 1.69 KB
/
styles.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
}
form {
display: inline-block;
margin-top: 20px;
}
label, input, button {
display: block;
margin: 10px auto;
}
h1 {
margin: 20px 0;
color: #72007a;
font-size: 2em;
font-weight: 500;
}
form {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
width: 90%;
max-width: 400px;
}
form label {
color: #7a006a;
font-weight: 500;
margin-bottom: 10px;
align-self: flex-start;
}
input[type="text"] {
width: 100%;
padding: 12px 15px;
margin-bottom: 20px;
border: 1px solid #bbb;
border-radius: 5px;
font-size: 1em;
}
button {
padding: 12px 20px;
background-color: #6c007a;
color: white;
border: none;
border-radius: 5px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #47004d;
}
h2 {
margin: 30px 0 10px;
color: #47004d;
}
ul {
list-style-type: none;
padding: 0;
width: 90%;
max-width: 400px;
}
li {
background: white;
margin: 10px 0;
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
li a {
color: #7a0076;
text-decoration: none;
font-weight: 500;
}
li a:hover {
text-decoration: underline;
}