-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
style3.css
111 lines (104 loc) · 1.58 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
101
102
103
104
105
106
107
108
109
110
111
body {
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: 30px;
line-height: 1.5;
padding: 0;
margin: 0;
background-color: rgb(211, 174, 180);
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
/*header*/
header {
background-color: rgb(37, 22, 2);
color: pink;
padding-top: 30px;
min-height: 70px;
border-bottom: orange 8px solid;
}
header a{
color: white;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul{
margin: 0;
padding: 0;
}
header li{
float: left;
display: inline;
padding: 0 50px 0 100px;
}
header #branding{
float: left;
}
header #branding h1{
margin: 0;
}
header .current a{
color: #e8491d;
font-weight: bold;
}
header a:hover{
color: #cccccc;
font-weight: bold;
}
/*showcase*/
#showcase{
min-height: 400px;
/* background-image: justify;*/
text-align: center;
/*color: #cccccc;*/
display: flex;
}
#showcase h1{
margin-top: 50px;
font-size: 35px;
margin-bottom: 30px;
font-style: oblique;
}
#showcase p{
font-size: 20px;
font-style: normal;
}
#showcase img{
height: 24%;
width: 24%;
}
/*#socialmedia{
margin-top: 20px;
}*/
/*#socialmedia*/
#showcase .box{
float: left;
text-align: center;
width: 30%;
padding: 10px;
margin: unset;
}
/*#socialmedia */
#showcase .box img{
width: 30px;
height: 30px;
}
#showcase h2{
text-align: left;
font-size: 20px;
margin-top: 100px;
}
#showcase h3{
font-size: 15px;
}
footer {
padding: 5px;
margin-top: 0px;
color: #cccccc;
background-color: #e8491d;
text-align: center;
font-weight: bold;
}