-
Notifications
You must be signed in to change notification settings - Fork 13
/
contact_style.css
99 lines (80 loc) · 1.64 KB
/
contact_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
95
96
97
98
99
body, html {
height: 100%;
background: url("images/contact1.jpg") no-repeat center center fixed;
background-size: cover;
}
.flex-container-background
{
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
overflow: auto;
width: auto;
}
.flex-container-heading {
display: -webkit-flex;
display: flex;
width: auto;
height: auto;
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
}
.flex-container {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: auto;
height: auto;
margin-left: auto;
margin-right: auto;
background: rgba(0, 0, 0, .3);
border: 2px solid #f1f1f1;
}
.flex-item {
width: 500px;
height: 200px;
margin: 10px;
margin-left: auto;
margin-right: auto;
}
@media screen and (max-width: 500px) {
.flex-item {
width: auto;
height: auto;
}
}
h1[id="contact"] {
line-height: normal;
font-family: Roboto-Thin;
font-size: 50px;
margin-left: auto;
margin-right: auto;
text-align: center;
color: white;
}
h1[id="sub-contact"] {
margin-top: 0px;
margin-left: 10px;
font-size: 30px;
font-family: Roboto-Regular;
color: white;
line-height: normal;
}
p[id="sub-contact"] {
margin-top: -10px;
margin-left: 10px;
font-size: 24px;
font-family: Roboto-Regular;
color: white;
line-height: normal;
}
@media screen and (max-width: 1000px)
{
h1[id="sub-contact"] {
text-align: center;
}
p[id="sub-contact"] {
text-align: center;
}
}