-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (96 loc) · 1.62 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (96 loc) · 1.62 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
body {
background: #2b2b2b;
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 40px 20px;
}
h1, h2, h3 {
color: #ffce00;
margin-bottom: 20px;
}
form {
margin: 20px auto;
max-width: 400px;
padding: 20px;
background: #3c3c3c;
border-radius: 15px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
input[type="text"],
select {
width: 80%;
padding: 10px;
border: none;
border-radius: 10px;
margin-bottom: 15px;
font-size: 1em;
}
button {
padding: 12px 25px;
font-size: 1em;
background: #ffce00;
color: #000;
border: none;
border-radius: 12px;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background: #ffd633;
}
ul {
list-style: none;
padding: 0;
margin-top: 15px;
}
ul li {
background: #444;
margin: 5px auto;
padding: 10px;
border-radius: 10px;
width: 80%;
color: #fff;
}
a {
color: #ffce00;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
em {
color: #cccccc;
font-style: italic;
}
@media (max-width: 600px) {
body {
padding: 20px 10px;
}
form {
width: 95%;
padding: 15px;
}
input[type="text"],
select,
button {
width: 100%;
font-size: 1em;
}
form label {
width: 100%;
font-size: 1em;
padding: 12px;
}
ul li {
width: 95%;
font-size: 1em;
}
h1, h2, h3 {
font-size: 1.4em;
}
button {
padding: 14px 20px;
}
}