-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
69 lines (60 loc) · 1.15 KB
/
css.css
File metadata and controls
69 lines (60 loc) · 1.15 KB
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
body {
background-color: #121212;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: white;
margin: 0;
padding: 20px;
}
.header {
font-size: 2.5rem;
color: #00BFA6;
text-align: center;
margin-bottom: 30px;
}
.compare-box {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}
.checkboxes {
display: flex;
flex-direction: row;
gap: 10px;
margin-bottom: 20px;
}
label {
font-size: 1.2rem;
}
input[type="checkbox"] {
margin-right: 10px;
}
.b1 {
padding: 0.8rem 2rem;
font-size: 1.1rem;
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
background-color: #00BFA6;
color: #121212;
font-weight: bold;
}
.b1:hover {
background-color: #26D6BB;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}
.results {
background-color: #1E1E1E;
padding: 20px;
border-radius: 10px;
width: 80%;
margin: 0 auto;
}
.result-card {
background-color: #2A2A2A;
padding: 15px;
border-radius: 8px;
margin-top: 15px;
}