-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·130 lines (122 loc) · 2.25 KB
/
style.css
File metadata and controls
executable file
·130 lines (122 loc) · 2.25 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
body{
background-color: rgba(128, 128, 128, 0.247);
}
.navigationbar{
position: sticky;
top:0.5%;
}
.navigationbar ul{
list-style-type: none;
padding: 1%;
background-color: white;
}
.navigationbar ul li{
display: inline;
}
.navigationbar ul li a{
text-decoration: none;
margin: 1%;
padding: 1%;
color: rgb(228, 197, 111);
}
.navigationbar ul li a:hover{
color: wheat;
background-color: brown;
box-shadow: 2px 2px 5px 2px black;
}
#websitelogo{
display: inline;
width: 3.5%;
border-radius: 50%;
float: left;
}
#websitelogo:hover{
box-shadow: 2px 2px 5px 2px black;
}
#greeting{
font-family: calibri;
font-size: xx-large;
}
#textabout{
font-family: calibri;
font-size: larger;
}
.indexing{
flex: 1;
float:left;
margin-right: 1%;
height: 100%;
position: sticky;
top:10%;
}
.indexing ul li>a{
text-decoration: none;
font-size: larger;
}
.indexing ul li>a:visited{
color: blue;
}
.bodycontent{
display: flex;
}
.indexing ul{
list-style: none;
}
.indexing ol li{
margin-bottom: 5%;
}
.content{
flex:3;
}
.indexing ul>li{
margin-bottom: 10%;
background-color: white;
border-right: 0.5em solid green;
}
.indexing ul>li:hover{
background-color:green;
}
.note{
background-color: white;
border-left: 0.2em solid gray;
font-style: italic;
}
.gallerycontent{
display: grid;
grid-template-columns: 25% 25% 25% 25%;
grid-template-rows: 33% 33% 33%;
}
.gallerycontent img, .gallerycontent iframe{
width: 98%;
height: 98%;
border: 2px solid black;
}
.gallerycontent img:hover, .gallerycontent iframe:hover{
box-shadow: 2px 2px 5px 5px white;
}
.gallerycontent img:nth-child(3){
grid-column-start: 3;
grid-column-end: 5;
grid-row-start: 1;
grid-row-end: 3;
height: 99%;
width: 99%;
}
.gallerycontent img:nth-child(4){
grid-column-start: 1;
grid-column-end: 3;
width: 99%;
}
.headsec{
background-color: rgb(152, 56, 230);
padding-bottom: 8%;
}
#myimage{
float: left;
}
.myname{
text-align: center;
}
.details{
clear:both;
}