-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (58 loc) · 1005 Bytes
/
style.css
File metadata and controls
59 lines (58 loc) · 1005 Bytes
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
#container{
margin-left: auto;
margin-right: auto;
padding: 5px;
}
h1{
font-family: Georgia, 'Times New Roman', Times, serif;
}
#header{
text-align: center;
}
#nav{
float:left;
width:100px;
padding: 5px;
}
#content{
float:left;
}
#textContent{
align-content: center;
text-align: center;
}
ul{
text-align: left;
}
#buttonTable{
}
#footer{
clear: both;
}
.backgroundOfPage{
background-image: url(sources/lake.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.button{
display:inline-block;
width: 200px;
height: 100px;
font-size:24px;
opacity:0.5;
transition-duration: 0.4s;
text-align: center;
white-space: normal;
}
.button:hover{
opacity: 1;
font-style: italic;
box-shadow: 4px 4px lightgrey;
border-style: dotted;
text-decoration: underline wavy slategray;
background-color: whitesmoke;
}
u{
text-decoration: underline double;
}