-
Notifications
You must be signed in to change notification settings - Fork 0
/
segashnaStyle.css
112 lines (93 loc) · 1.64 KB
/
segashnaStyle.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{
background-color: bisque;
}
.main-menu{
text-align: center;
}
image{
width: 160px;
height: 400px;
}
.main-menu > a{
margin: 5px;
padding: 5px;
background-color: gray;
border-style: solid;
}
.main-menu > a:hover{
background-color: lightgray;
}
.main-menu > a:link{
color: black;
text-decoration: none;
}
.main-menu > a:visited{
color: black;
text-decoration: none;
}
div{
margin:5px;
}
div.image-pm{
background-color: gray;
width: fit-content;
margin: auto;
padding: 5px;
text-align: center;
&:hover{
background-color: aliceblue;
}
}
div.vice-pms{
width: 320px;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
div.gallery{
padding: 10px;
}
}
div.ministers{
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
text-align: center;
div.gallery{
margin: 10px;
padding: 10px;
}
}
div.gallery{
background: red;
}
.title{
/* max-width: 160px; */
text-align: center;
font-family: "Comic Sans MS", "Comic Sans", cursive;
}
.description{
text-align: center;
font-size: 20px;
}
footer{
text-align: center;
background-color: lightslategray;
color: black;
font-size:20px;
a:hover{
background-color: lightgray;
}
a:link{
color: black;
text-decoration: none;
}
a:visited{
color: black;
text-decoration: none;
}
}