-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegirls.css
More file actions
189 lines (143 loc) · 2.18 KB
/
codegirls.css
File metadata and controls
189 lines (143 loc) · 2.18 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* general
*/
* {
font-family: "Open Sans", sans-serif;
}
body {
margin: 0;
overflow-x: hidden;
}
header, section, footer {
clear: both;
margin: auto 20%;
display: flex;
flex-direction: column;
}
section a {
text-decoration: none;
color: black;
font-weight: bolder;
}
section a:hover {
background-color: #FBF4FE;
}
@media (max-width: 750px), (orientation: portrait) {
header, section, footer {
margin: auto 1em;
}
}
p {
text-align: justify;
}
/*
* header & navigation
*/
#header h1 {
text-align: center;
}
#navigation {
display: flex;
justify-content: center;
background-color: #fbf4fe;
}
#navigation ul {
padding: 0;
list-style-type: none;
display: flex;
justify-content: center;
}
@media (max-width: 750px), (orientation: portrait) {
#navigation ul {
flex-direction: column;
}
#navigation ul li {
text-align: center;
}
}
#navigation ul li {
padding: 0.25em 1em;
border-bottom: 0.2em solid transparent;
}
#navigation ul li:hover {
border-bottom: 0.2em solid black;
}
#navigation ul li a {
color: black;
text-decoration: none;
}
/*
* current
*/
#current {
margin-top: 2.5em;
padding: 5px;
border: 0.25ex dotted black;
border-radius: 5px;
color: #a000c0;
}
/*
* home
*/
#home h2 {
text-align: center;
}
#home img {
align-self: center;
}
/*
* where
*/
#map {
margin-left: -20vw;
width: 100vw;
height: 75vh;
border: none;
pointer-events: none;
}
@media (max-width: 750px), (orientation: portrait) {
#map {
margin-left: -1em;
height: 50vh;
}
}
/*
* about us
*/
#imgvideo {
text-align: center;
}
/*
* footer
*/
footer {
font-size: smaller;
color: #555;
}
footer p {
text-align: center;
}
footer a {
color: #333
}
/*
* Subscribe button
*/
#subscribe {
position: fixed;
right: 0;
bottom: 50%;
text-decoration: none;
color: black;
text-align: center;
background-color: #fbf4fe;
padding: 1em;
}
#subscribe p {
margin: 0;
}
@media (max-width: 750px), (orientation: portrait) {
#subscribe {
position: relative;
}
}