-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (113 loc) · 2.46 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (113 loc) · 2.46 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
:root {
--bg-color: #050505;
--accent-color: #00f2ff;
--secondary-color: #7000ff;
--text-color: #ffffff;
--card-bg: rgba(255, 255, 255, 0.03);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
small.version{
font-size: .5rem;
color:gray;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
min-height: 100vh;
}
/* 背景の動的なグラデーション */
.background-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #050505 100%);
z-index: -1;
}
header {
text-align: center;
padding: 80px 20px;
}
.glitch {
font-family: 'Syncopate', sans-serif;
font-size: 3.5rem;
font-weight: 700;
letter-spacing: 10px;
text-transform: uppercase;
position: relative;
display: inline-block;
color: var(--text-color);
text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}
.subtitle {
margin-top: 15px;
font-size: 1.1rem;
letter-spacing: 3px;
opacity: 0.7;
color: var(--accent-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 40px;
}
/* カードのデザイン */
.tool-card {
position: relative;
background: var(--card-bg);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 40px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
overflow: hidden;
backdrop-filter: blur(10px);
}
.tool-card:hover {
transform: translateY(-10px);
border-color: var(--accent-color);
box-shadow: 0 10px 40px rgba(0, 242, 255, 0.2);
}
.icon-box {
font-size: 2.5rem;
margin-bottom: 20px;
}
h2 {
font-size: 1.5rem;
margin-bottom: 15px;
letter-spacing: 1px;
}
p {
font-size: 0.95rem;
line-height: 1.6;
color: #ccc;
margin-bottom: 30px;
}
/* ボタンのデザイン */
.btn {
display: inline-block;
padding: 12px 30px;
background: transparent;
color: var(--accent-color);
border: 1px solid var(--accent-color);
text-decoration: none;
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 2px;
border-radius: 5px;
transition: all 0.3s ease;
}
.btn:hover {
background: var(--accent-color);
color: #000;
box-shadow: 0 0 20px var(--accent-color);
}