-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
93 lines (93 loc) · 1.48 KB
/
homepage.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
html, body {
font-family: "Open sans", Helvetica, Arial, sans-serif;
font-size: 50px;
margin: 0;
border: 0;
font-weight: 100;
background: #fc9d9a;
min-height: 400px;
}
* {
color: #852;
}
span {
word-spacing: none;
}
.name {
padding: 200px 0 50px 0;
font-size: 100px;
color: white;
text-align: center;
}
.title {
text-align: center;
}
.logos {
position: absolute;
bottom: 50px;
font-size: 30px;
left: 0;
right: 0;
margin-bottom: 20px;
}
.logos a {
display: inline-block;
float: left;
width: 20%;
text-align: center;
text-decoration: none;
}
@media (max-height: 600px) {
.name {
padding: 50px 0;
}
.logos {
position: inherit;
margin-top: 250px;
}
}
@media (max-width: 1200px) {
.name {
font-size: 70px;
}
}
@media (max-width: 800px) {
.name {
padding-top: 50px;
font-size: 50px;
}
.title {
font-size: 40px;
}
.logos {
position: inherit;
margin-top: 20px;
}
.logos a {
display: block;
float: none;
width: 100%;
margin-top:15px; }
}
@media (max-width: 540px) {
.name {
font-size: 30px;
}
.title {
font-size: 25px;
}
.logos a {
font-size: 20px;
}
}
@media (max-width: 320px) {
.name {
font-size: 25px;
}
.title {
font-size: 20px;
}
.logos a {
font-size: 20px;
}
}