-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (97 loc) · 1.83 KB
/
styles.css
File metadata and controls
112 lines (97 loc) · 1.83 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
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #1a1a1a;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: #fff;
border: 1px solid #000000;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav-left h1 {
font-family: monospace;
font-size: 1.25rem;
font-weight: 800;
color: #1a1a1a;
}
.nav-right img {
height: 35px;
}
#mainBody {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 2rem;
gap: 2rem;
}
#rightContainer {
max-width: 400px;
width: 100%;
}
#container1 {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
#container1 button {
background-color: #f7f7f7;
border: 1px solid #ccc;
padding: 0.75rem 1.25rem;
border-radius: 12px;
cursor: pointer;
font-weight: 600;
transition: all 0.2s ease-in-out;
}
#container1 button:hover {
background-color: #e6e6e6;
transform: scale(1.05);
}
.copyCode {
background-color: #f1f1f1;
padding: 1rem;
border-radius: 10px;
font-family: monospace;
text-align: center;
cursor: pointer;
font-size: 0.9rem;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: background-color 0.2s;
}
.copyCode:hover {
background-color: #e2e2e2;
}
.Gradient {
width: 600px;
height: 300px;
border-radius: 20px;
background-image: linear-gradient(to right, #D1E84C, #E0C104);
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.how-to-use {
background-color: #f1f1f1;
border-radius: 20px;
max-width: 90vw;
margin: 3rem auto;
padding: 1rem 1.5rem;
text-align: center;
}
.how-to-use h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1a1a1a;
font-family: monospace;
}
.how-to-use p {
font-size: 1rem;
line-height: 1.7;
color: #333;
text-align: left;
}