-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
138 lines (101 loc) · 1.94 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
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
131
132
133
134
135
136
h1{
text-align: center;
font-size: 65px;
color: rgba(104, 196, 116, 0.646);
font-family: 'Rock Salt', cursive;
position: relative;
top: 17.5px;
}
p{
font-family: 'PT Serif', serif;
font-size: medium;
}
body{
border: 2px dotted rgba(47, 148, 10, 0.854);
width: 95%;
margin: 0 auto;
background-color: rgba(15, 77, 185, 0.878);
border-radius: 11px;
}
/* if my text or anything is too big this makes it so you can scroll instead of overlapping. */
main{
overflow: scroll;
}
/* top of pyramid */
nav, #bigMiddle, footer, .change{
margin: 1%;
background-color: rgba(207, 209, 212, 0.933);
}
#bigMiddle{
height: 250px;
}
/* middle of pyramid */
.small-1, .small-2, .small-3{
width: 35%;
float: left;
margin: 1%;
background-color: rgba(207, 209, 212, 0.933);
}
/* center pyramid I thought I'd have to do small-2 as well but it pushed everything over so small-2 doesn't need a right margin */
.small-1{
margin-left: 15%;
}
/* bottom of pyramid */
.small-3{
margin-right: 25%;
margin-left: 25%;
width: 50%;
float: left;
}
li{
display: inline;
padding: 3px;
}
a{
margin-left: 155px;
color: black;
}
/* last block */
nav, footer, .change{
padding: 7px;
background-color: rgba(207, 209, 212, 0.933);
}
/* need this down here so it grabs bigMiddle as well */
article{
height: 200px;
background-color: var(--nav-color);
}
.change{
background-color: var(--nav-color);
--nav-color: rgba(207, 209, 212, 0.933);
}
.row{
display: flex;
}
.pic{
padding: 2%;
}
iframe{
width: 100%;
height: 125px;
margin-right: 1.5%;
overflow: auto;
position: relative;
bottom: 15px;
}
.sInfo{
text-align: center;
}
.info{
margin-top: -15px;
}
.move{
margin-bottom: 10px;
}
.what{
width: 100%;
border: 5px solid black;
height: 1000px;
position: relative;
top: 500px;
}