blob: 3c8786d36ec9a59d0535663a2cc7b6de6b647106 (
plain)
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
|
/*****************************************************************************/
/* site title */
@font-face {
font-family: Montserrat-Light;
font-weight: 100;
src: url(../font/Montserrat/Montserrat-Thin.ttf);
}
#site-title {
font-family: Montserrat-Light, sans-serif;
font-size: 17vw;
font-weight: 100;
width: 100%;
margin: 0px auto;
text-align: center;
text-transform: uppercase;
}
@media screen and (min-width: 1100px) {
#site-title {
font-size: 10rem;
}
}
@media screen and (max-width: 500px) {
#site-title {
font-size: 15vw;
}
}
/*****************************************************************************/
/* solgan */
.slogan {
margin: 50px auto;
padding: 30px 20px;
background: black;
color: red;
text-transform: uppercase;
font-family: Montserrat, sans-serif;
font-weight: bold;
font-style: italic;
font-size: 2rem;
letter-spacing: 5px;
}
@media screen and (min-width: 600px) {
.slogan {
font-size: 2.3rem;
padding: 30px 70px;
}
}
.slogan-row {
display: flex;
justify-content: space-between;
}
.slogan-row:first-child {
margin-bottom: 20px;
}
.slogan:hover .slogan-row {
transition: 0.5s;
justify-content: center;
}
/*****************************************************************************/
/* links */
.links {
display: flex;
justify-content: space-between;
max-width: 350px;
margin: 10px auto 40px auto;
}
.links a.links-item {
display: block;
background-color: var(--color-dark);
padding: 5px 15px;
border-radius: 10px;
}
.links a.links-item img {
height: 30px;
width: 30px;
filter: grayscale(1) invert(1) brightness(200%);
}
.links-item:hover {
filter: invert(1);
}
|