-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (87 loc) · 1.75 KB
/
style.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
body {
background-image: url(./backimg_.jpg);
font-family: 'Bodoni Moda', serif;
font-family: 'Imbue', serif;
font-size: 20px;
}
#con {
display: grid;
grid-template-areas:
" header header header header"
" sidebar info info info"
" sidebar imgs imgs imgs"
" footer footer footer footer";
grid-gap: 30px;
}
#logo{
width: 80px;
height: 80px;
margin-left: 50px;
padding: 0;
float: left;
margin-left: 350px;
margin-top: -154px;
}
ul {
list-style-type: none;
border: 2px solid rgba(0, 0, 0, 0.12) ;
margin: 10px;
padding: 20px;
}
ul p{
padding: 10px;
margin-bottom:20px;
background-color: #13546b;
color: #000000;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
li {
padding: 10px;
margin-bottom:20px;
background-color: #509ebb;
color: #000000;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
text-align: center;
}
li:hover {
background-color: #6da5b8;
cursor: pointer;
}
img {
width: 30%;
height: 40%;
border-radius: 25%;
box-shadow: rgba(0, 0, 0, 0.185) 10px 10px 10px 10px;
margin: 10px;
}
img:hover{
animation: ani 4s;
}
@keyframes ani{
0%{transform: rotatey(0deg)}
100%{transform: rotatey(360deg) ;}
}
.header {
grid-area: header;
font-size: 30px;
text-align: center;
background-color: rgba(0, 0, 0, 0.158);
}
.sidebar {
grid-area: sidebar;
font-size: 30px;
float: left;
align-content: center;
}
.imgs {
grid-area: imgs;
}
.footer {
grid-area: footer;
text-align: center;
}
.info{
grid-area: info;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
}