-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
75 lines (62 loc) · 1.04 KB
/
app.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
72
73
74
75
body {
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
}
.logo-container {
margin-top: 20px;
}
.logo {
width: 150px;
}
h1 {
font-size: 1.8em;
padding: 0;
text-align: center;
margin-top: 25px;
color: rgb(0, 0, 0);
}
.index-page .logo-container {
margin-top: 50px; /* Adjust the margin for centering */
}
.tool-button {
text-decoration: none;
}
footer {
text-align: center;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.tools {
text-align: center;
padding: 20px;
}
.tool-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
}
.tool-button {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
padding: 10px;
border: 2px solid #333;
border-radius: 50%;
width: 150px;
height: 150px;
transition: background-color 0.3s;
}
.tool-button:hover {
background-color: #f0f0f0;
}
.tool-button img {
width: 80px;
margin-bottom: 10px;
}