-
Notifications
You must be signed in to change notification settings - Fork 134
/
style.css
49 lines (42 loc) · 915 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
body {
font-family: Arial, sans-serif;
background-color: #e0f2f1; /* Light blue, reminiscent of water */
color: #0277bd; /* Darker blue for contrast */
text-align: center;
margin: 0;
padding: 20px;
}
h4 {
font-size: 1.5em;
margin-bottom: 20px;
}
.component {
font-size: 1em;
padding: 10px;
margin: 10px;
border: none;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input.component {
background-color: #b3e5fc; /* Lighter blue */
color: #01579b; /* Blue */
}
button.component {
background-color: #29b6f6; /* Bright blue */
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
button.component:hover {
background-color: #0288d1; /* Slightly darker blue on hover */
}
img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-top: 20px;
}
p {
margin-top: 20px;
}