-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (84 loc) · 1.31 KB
/
style.css
File metadata and controls
97 lines (84 loc) · 1.31 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
* {
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
margin: 0;
padding: 0;
background: #f4f8fb;
color: #333;
}
/* HEADINGS */
h1, h2, h3 {
text-align: center;
color: #0b5ed7;
margin-bottom: 10px;
}
/* CARD STYLE */
.card {
background: #ffffff;
width: 90%;
max-width: 600px;
margin: 20px auto;
padding: 20px;
border-radius: 14px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
/* INPUTS */
input, textarea, select {
width: 100%;
padding: 10px;
margin-top: 8px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 14px;
}
textarea {
min-height: 90px;
}
/* BUTTONS */
button {
width: 100%;
padding: 12px;
background: linear-gradient(135deg, #0b5ed7, #198754);
border: none;
border-radius: 10px;
color: white;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
transform: translateY(-2px);
opacity: 0.95;
}
/* LISTS */
ul {
padding-left: 20px;
}
li {
margin-bottom: 8px;
}
/* IMAGES */
img {
margin: 10px;
border-radius: 10px;
}
/* RANGE SLIDER */
input[type=range] {
margin-top: 15px;
}
/* FOOTER TEXT */
p {
text-align: center;
font-size: 14px;
color: #555;
}
/* DASHBOARD BUTTONS (if any) */
.dashboard-btn {
display: block;
width: 90%;
max-width: 400px;
margin: 10px auto;
}