Skip to content

Commit dd101e5

Browse files
authored
Файлы для сайта
1 parent c0755a0 commit dd101e5

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

css/style.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
5+
font-size: 20px;
6+
line-height: 1.2;
7+
font-family: Helvetica, Arial, sans-serif;
8+
color: #ffffff;
9+
10+
background-color: #312785;
11+
background-image:
12+
repeating-linear-gradient(
13+
150deg,
14+
rgba(255, 255, 255, 0.06),
15+
rgba(255, 255, 255, 0.06) 1px,
16+
transparent 0,
17+
transparent 41px),
18+
repeating-linear-gradient(
19+
-150deg,
20+
rgba(255, 255, 255, 0.06),
21+
rgba(255, 255, 255, 0.06) 1px,
22+
transparent 0,
23+
transparent 41px);
24+
25+
-ms-text-size-adjust: 100%;
26+
-webkit-text-size-adjust: 100%;
27+
}
28+
29+
main {
30+
padding: 20px 20px 120px 20px;
31+
32+
text-align: center;
33+
}
34+
35+
h1 {
36+
margin: 0;
37+
38+
font-weight: normal;
39+
letter-spacing: -1px;
40+
}
41+
42+
p {
43+
margin: 20px 0;
44+
}
45+
46+
a:link, a:visited {
47+
color: #ffffff;
48+
text-decoration: underline
49+
}
50+
51+
a:hover {
52+
text-decoration: none
53+
}

0 commit comments

Comments
 (0)