-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 761 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (43 loc) · 761 Bytes
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
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 2rem;
text-align: center;
}
.container {
max-width: 600px;
margin: auto;
background: white;
border-radius: 12px;
padding: 2rem;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
input, button {
padding: 0.7rem;
font-size: 1rem;
margin: 1rem 0;
width: 80%;
border-radius: 8px;
border: 1px solid #ccc;
}
button {
background-color: #0070f3;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0051a8;
}
.hidden {
display: none;
}
#certificate {
margin-top: 1.5rem;
padding: 1rem;
background: #e6ffe6;
border: 1px solid #8cff8c;
border-radius: 8px;
}