-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (83 loc) · 1.44 KB
/
style.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
html {
background: url(content/comp_blur.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
margin: 0;
}
.roundedHeaderText {
border-radius: 5px;
color: white;
background-color: rgba(200, 200, 200, 0.25);
padding: 0 10px 0 10px;
}
.centered-Info {
width: 50%;
margin: 5vh auto;
}
.mainInfo-Name {
margin: 0 auto;
padding: 0;
font-size: 4em;
text-align: center;
white-space: nowrap;
overflow: hidden;
}
.mainInfo-Body {
margin-top: 15px;
padding: 0;
}
p {
margin: 0;
color: white;
text-align: center;
border-radius: 5px;
background-color: rgba(200, 200, 200, 0.25);
padding: 5px;
line-height: 1em;
}
.mainInfo-Contact {
margin-top: 10px;
display: flex;
}
.mainInfo-ContactItem {
flex: 1;
}
.mainInfo-ContactItem:first-child {
margin-right: 20px;
}
.mainInfo-ContactItem a {
text-decoration: none;
color: white;
}
.mainInfo-ContactItem a:hover {
font-weight: bolder;
}
@media only screen and (max-width: 1024px) {
.centered-Info {
width: 80%;
}
}
@media only screen and (max-width: 800px) {
.mainInfo-Contact {
display: block;
}
.mainInfo-ContactItem:first-child {
margin-right: 0;
}
.mainInfo-ContactItem:not(:first-child) {
margin-top: 5px;
}
}
@media only screen and (max-width: 600px) {
.mainInfo-Name {
/* Hooray, magic numbers! */
font-size: 11.3vw;
}
.roundedHeaderText {
padding: 0 5px;
}
}