-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (107 loc) · 1.77 KB
/
Copy pathstyles.css
File metadata and controls
124 lines (107 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
123
124
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #f5e7e7;
background-color: #6a6a78;
}
header {
background: #0a0a11;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header .container {
max-width: 1100px;
margin: auto;
padding: 0 20px;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: white;
margin: 15% auto;
padding: 20px;
border: 1px solid #080707;
border-radius: 30px;
width: 80%;
max-width: 400px;
text-align: center;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.modal-button {
width: 100%;
padding: 10px;
margin: 10px 0;
background-color: grey;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.modal-button:hover {
background-color: #090a09;
}
main .section {
padding: 2rem 0;
text-align: center;
}
.container {
max-width: 1100px;
margin: auto;
padding: 0 20px;
}
h2 {
color: #4CAF50;
}
footer {
text-align: center;
padding: 1rem 0;
background: #333;
color: #fff;
margin-top: 2rem;
}
footer p {
margin: 0;
}