-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
63 lines (52 loc) · 936 Bytes
/
css.css
File metadata and controls
63 lines (52 loc) · 936 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Comment */
/*
Multiline Comment
*/
@import url("https://example.com/style.css");
:root {
--main-color: #3498db;
--secondary-color: rgba(255, 255, 255, 0.8);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
#start {
/*id tags*/
}
body {
font-family: "Arial", sans-serif;
color: var(--main-color);
background-color: #f0f0f0;
}
h1, h2, h3 {
color: var(--secondary-color);
margin: 10px;
}
a {
text-decoration: none;
color: #2980b9;
transition: color 0.3s ease-in-out;
}
a:hover {
color: #e74c3c;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
padding: 20px;
}
.button {
background-color: #2ecc71;
border: none;
border-radius: 5px;
color: white;
padding: 10px 20px;
cursor: pointer;
}
.button:disabled {
background-color: #95a5a6;
cursor: not-allowed;
}