-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_news.css
103 lines (102 loc) · 2.22 KB
/
style_news.css
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
body{
background-color: #dacbb9;
margin: auto;
}
/* навигация */
nav{
background-color: rgba(255, 255, 255, 0);
overflow: visible;
position: fixed;
top: 0;
width: 100%;
height: 8%;
margin: 0%;
display: flex;
align-items: center;
justify-content: center;
transition: 1s;
}
nav:hover, nav:active{
background-color: #745e4d;
transition: 1s;
}
nav a{
margin: 0% 1% 0% 1%;
font-family:Century Gothic;
font-size: 1.2vw;
color:rgb(255, 255, 255);
letter-spacing: 2px;
transition: 1s;
padding: 5px 10px 5px 10px;
border-radius: 40px;
}
nav a:hover{
color:rgb(255, 255, 255);
text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.26);
transition: 1s;
background-color: rgba(255, 255, 255, 0.377);
padding: 5px 10px 5px 10px;
border-radius: 40px;
}
a{
text-decoration: none;
}
nav img{
width: 100px;
margin-right: 2%;
}
#news{
background: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
margin: 5% 20% 2% 20%;
padding: 0.5% 0% 0.5% 0%;
text-align: center;
font-family: Century Gothic;
font-size: 1.3vw;
color: black;
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.329);
}
/* свойства для блока новостей */
#blocks{
display: flex;
flex-direction: column;
justify-content: center;
}
#blocks div{
background-color: white;
margin: 0% 20% 2% 20%;
}
/* свойства для фото и надписей в слайдере */
#blocks div img{
width: 100%;
}
.dateOfEvent{
text-align: right;
font-family: Century Gothic;
font-size: 1.2vw;
padding-right: 2%;
margin: 1% 0% 1% 50%;
color: black;
background: linear-gradient(to left, #11102c4b, rgba(255, 255, 255, 0));
}
.event{
text-align: center;
font-family: Century Gothic;
font-size: 1.3vw;
margin: 0%;
}
.otherText{
text-align: justify;
font-family: Century Gothic;
font-size: 1.2vw;
padding: 0% 5% 1% 5%;
}
footer{
margin-top: 1%;
margin-bottom: 1%;
text-align: center;
font-family: Century Gothic;
font-size: 1vw;
color: black;
letter-spacing: 1px;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.404);
}