-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (98 loc) · 2.09 KB
/
styles.css
File metadata and controls
112 lines (98 loc) · 2.09 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
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
107
108
109
110
111
112
/* Reset styles and basic layout */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 30px;
}
.header h1 {
font-size: 3rem;
font-weight: 700;
color: #333;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.subtitle {
font-size: 1.2rem;
color: #666;
margin-bottom: 20px;
}
label {
display: block;
font-size: 1.2rem;
color: #666;
margin-bottom: 10px;
}
select {
width: 100%;
max-width: 100%;
padding: 12px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 8px;
box-sizing: border-box;
margin-bottom: 20px;
background-color: #f5f5f5;
color: #333;
font-family: 'Poppins', sans-serif;
}
footer {
text-align: center;
margin-top: 40px;
padding: 20px;
background-color: #fff;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-size: 0.9rem;
color: #666;
}
.footer p {
margin: 0;
}
.gpu-list {
list-style-type: none;
padding: 0;
}
.gpu-list-label {
font-size: 2rem;
font-weight: 600;
color: #555;
margin-bottom: 20px;
}
.gpu-list li {
font-size: 1.5rem;
margin-bottom: 20px;
padding: 20px;
background-color: #f9f7f7; /* Pastel gray */
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.gpu-list li .compatible-text {
font-size: 1rem;
color: #888;
margin-bottom: 10px;
}
.gpu-list li:hover {
transform: translateY(-6px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
background-color: #f2f2f2; /* Lighter pastel gray on hover */