-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (88 loc) · 1.57 KB
/
styles.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
body{
background-color:green;
background-image:linear-gradient(to bottom right,rgb(243, 194, 103),pink);
}
.header,.footer{
width:90vw;
height:30vh;
background-color: rgba(127, 255, 212,0.2);
margin:auto;
padding:1%;
overflow:hidden;
border:3px rgb(134, 134, 158) solid;
border-radius:5% 20%;
box-shadow: gray 5px 10px 20px;
box-sizing: border-box;
}
.header>h1{
text-align: center;
background-color: bisque;
width:fit-content;
margin:auto;
padding:0.5%;
}
#logopic{
border-radius: 50%;
width:100px;
position:fixed;
z-index:auto;
top:20px;
}
.header>nav{
margin-left:150px;
}
.header>nav li{
list-style-type: none;
}
.header>nav a{
text-decoration: none;
float:left;
margin:2% 5%;
background-color: bisque;
padding:0.5%;
border-radius: 10%;
box-shadow: rgb(236, 7, 45) 5px 10px 10px;
transition:1s;
}
.header>nav a:hover{
background-color:rgb(35, 56, 56);
color:white;
}
.icons{
float:right;
}
#footericons{
margin:auto;
}
.icons img{
width:40px;
margin:5px;
}
.main{
overflow:hidden;
height:auto;
background-color:rgb(128, 176, 224);
padding:1%;
display:block;
}
.section1,.section2{
width:40vw;
margin:1%;
}
.section1{
float:left;
}
.section2{
float:right;
}
table,th,td{
border:1px solid black;
border-collapse:collapse;
}
summary{
text-decoration: underline;
}
p{
font-family: 'Bonheur Royale', cursive;
font-size:300%;
}