-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
61 lines (48 loc) · 1020 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
56
57
58
59
60
61
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-image: url(img64003.whqc_640x462q80.webp);
}
.head{
font-family: 'Poppins',sans-serif;
width: 400px;
position: relative;
background-color: white;
padding: 10px;
border-radius: 5px;
left: 30%;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.card {
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
background-color: #85FFBD;
background-image: linear-gradient(45deg, #85FFBD 0%, #FFFB7D 100%);
}
.card h2 {
margin-top: 0;
}
.card p {
margin-bottom: 5px;
}