-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (111 loc) · 1.94 KB
/
style.css
File metadata and controls
128 lines (111 loc) · 1.94 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #121212;
color: white;
line-height: 1.6;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #1e1e1e;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav a {
color: white;
margin-left: 20px;
text-decoration: none;
}
nav a:hover {
color: #00d8ff;
}
.hero {
text-align: center;
padding: 100px 20px;
background: linear-gradient(135deg, #222, #000);
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
color: #aaa;
}
.btn {
background-color: #00d8ff;
color: black;
padding: 12px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
.tools {
padding: 60px 20px;
text-align: center;
}
.tools h2 {
font-size: 32px;
margin-bottom: 40px;
}
.tool-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.tool-card {
background-color: #1e1e1e;
padding: 20px;
border-radius: 8px;
text-align: left;
}
.tool-card h3 {
margin-bottom: 10px;
}
.tool-card p {
color: #ccc;
}
.btn.small {
background-color: #00d8ff;
color: black;
padding: 8px 16px;
display: inline-block;
font-size: 14px;
border-radius: 5px;
margin-top: 15px;
text-decoration: none;
}
.btn.small:hover {
background-color: #00c1e8;
}
.btn.small {
background-color: #00d8ff;
color: black;
padding: 8px 16px;
display: inline-block;
font-size: 14px;
border-radius: 5px;
margin-top: 15px;
text-decoration: none;
}
.btn.small:hover {
background-color: #00c1e8;
}
.tool-card img {
width: 128px;
height: 128px;
object-fit: contain;
display: block;
margin: 0 auto 10px;
}