-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (76 loc) · 1.23 KB
/
style.css
File metadata and controls
85 lines (76 loc) · 1.23 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
/* Reset some basic styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
/* Container */
.container {
max-width: 900px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Buttons */
button {
padding: 10px 18px;
background: #007bff;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
font-size: 16px;
transition: 0.2s;
}
button:hover {
background: #0056b3;
}
/* Headings */
h1, h2, h3 {
margin-bottom: 15px;
font-weight: 600;
}
/* Links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Basic card */
.card {
background: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
/* Inputs */
input, textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-top: 10px;
margin-bottom: 15px;
font-size: 16px;
}
/* Navbar */
.navbar {
background: #222;
padding: 15px;
color: white;
margin-bottom: 20px;
border-radius: 6px;
}