-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (106 loc) · 1.77 KB
/
styles.css
File metadata and controls
122 lines (106 loc) · 1.77 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}
body {
min-height: 100vh;
background: #ffffff;
color: #111111;
display: flex;
justify-content: center;
padding: 16px;
}
main {
width: 100%;
max-width: 420px;
display: flex;
flex-direction: column;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 12px;
letter-spacing: -0.5px;
text-align: center;
}
h2 {
font-size: 1.05rem;
font-weight: 500;
margin: 24px 0 8px;
}
p {
font-size: 0.95rem;
color: #444;
margin-bottom: 6px;
text-align: center;
}
input[type="text"],
input[type="file"],
textarea,
button {
width: 100%;
}
input[type="file"] {
padding: 10px;
border: 1px solid #ccc;
background: #fff;
border-radius: 6px;
font-size: 0.9rem;
}
input[type="file"]::file-selector-button {
background: #111;
color: #fff;
border: none;
padding: 8px 12px;
margin-right: 10px;
border-radius: 4px;
cursor: pointer;
}
input[type="text"] {
padding: 10px;
font-size: 0.95rem;
border: 1px solid #ccc;
border-radius: 6px;
}
input:focus,
textarea:focus {
outline: none;
border-color: #111;
}
textarea {
min-height: 280px;
padding: 12px;
font-size: 0.95rem;
border: 1px solid #ccc;
border-radius: 8px;
resize: vertical;
}
button {
margin-top: 16px;
padding: 12px;
font-size: 1rem;
font-weight: 500;
background: #111;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
}
button:active {
transform: scale(0.97);
}
/* Responsive Design */
@media (min-width: 768px) {
body {
padding: 40px;
}
h1 {
font-size: 2.4rem;
}
textarea {
min-height: 360px;
}
}