-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
71 lines (64 loc) · 1.31 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #e0f2f1;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
padding-top: 50px;
color: #004d40;
}
h1 {
color: #00796b;
margin-bottom: 20px;
}
.concept-container {
background: #ffffff;
border-radius: 10px;
padding: 30px;
box-shadow: 0 6px 12px rgba(0, 77, 64, 0.2);
width: 90%;
max-width: 600px;
text-align: center;
}
input {
padding: 10px;
margin-top: 10px;
margin-bottom: 20px;
width: 80%;
border: 2px solid #b2dfdb;
border-radius: 5px;
font-size: 16px;
color: #004d40;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 10px;
}
button {
padding: 10px 15px;
cursor: pointer;
flex-basis: 48%;
background-color: #00796b;
color: #ffffff;
border: none;
border-radius: 5px;
transition: background-color 0.3s, transform 0.2s;
font-size: 16px;
}
button:hover {
background-color: #004d40;
transform: translateY(-2px);
}
p {
font-size: 1.2em;
padding: 20px;
margin-top: 20px;
background-color: #b2dfdb;
border-radius: 8px;
border: 1px solid #00796b;
box-shadow: 0 2px 5px rgba(0, 77, 64, 0.1);
color: #004d40;
}