-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle3.css
100 lines (84 loc) · 1.46 KB
/
Style3.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
div.gallery {
border: 1px solid #ccc;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 0 6px;
float: left;
width: 31.33%;
margin-right: 2%;
color: beige;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
margin-right: 0;
margin-bottom: 6px;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
margin-right: 0;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
h2{
font-family: Segoe UI;
font-size: 70px;
color: white;
text-shadow: 1px 1px 20px black, 0 0 40px blue, 0 0 60px darkblue;
text-align: center;
}
h4{
font-family: Segoe UI;
font-size: 20px;
color: rgb(76, 95, 116);
text-shadow: 1px 1px 20px black, 0 0 40px blue, 0 0 60px darkblue;
text-align: center;
}
body{
background-image: url("IMG/BGC.webp");
background-repeat: no-repeat;
background-size: cover;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
padding: 10px 20px;
}
#header-logo img {
height: 50px;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav li {
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}