forked from JHanslik/Cui-zine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.css
118 lines (100 loc) · 1.79 KB
/
contact.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
header {
background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.884) ), url(./img/header.jpg) no-repeat;
height: 600px;
background-size: cover;
background-position: 20%;
}
h1 {
font-weight: bold;
font-size: 35px;
}
.contact h2 {
font-weight: bold;
font-size: 35px;
}
.menu {
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid rgb(221, 221, 221);
color: white;
padding: 0 40px;
}
.menu h1 {
font-weight: bold;
font-size: 35px;
}
.menu nav a {
text-decoration: none;
color: white;
font-size: 20px;
padding-left: 20px;
}
.welcome {
display: flex;
align-items: center;
justify-content: center;
height: 60%;
font-size: 50px;
font-weight: bold;
text-align: center;
color: white;
}
.contact {
height: 700px;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
}
.content_map {
margin-right: 50px;
display: flex;
flex-direction: column;
justify-content: center;
width: 55%;
}
.adress {
width: 33%;
height: 20%;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 50px;
line-height: 30px;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
}
.find {
width: 100%;
}
.find, .news {
width: 100%;
margin-top: 30px;
}
.info h3 {
font-size: 20px;
font-weight: bold;
padding-bottom: 5px;
}
input {
background-color: white;
border-radius: 5px;
padding: 10px;
width: 100%;
}
button {
padding: 10px;
background-color: transparent;
border-radius: 5px;
width: 100%;
}
footer {
height: 350px;
background-color: black;
color: white;
}