-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (96 loc) · 1.93 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
.search input {
margin:0.5rem 0 0.5rem 0;
font-size: 0.9rem;
padding: 0.5rem;
border-radius: 1rem;
border: 1px solid #eeeeee;
}
.flexbox{
background-color:whitesmoke;
z-index: 1;
display: flex;
width: 100%;
height: 8%;
margin-top: 0%;
justify-content: center;
flex-direction: row;
align-items: center;
}
body{
font-family: 'PT Sans', sans-serif;
}
.topMarg{
margin-top: 10%;
}
nav ul {
list-style-type: none;
position: fixed;
top: 0;
left: 0;
}
ul{
list-style-type: none;
}
li{
margin-top: 0.5%;
margin-left: 0.5%;
margin-right: 0.5%;
}
a{
color:cornflowerblue;
text-decoration: none;
}
@media all and (min-width: 768px){
.col-1 {flex-basis: 8.33%;} /* width works too */
.col-2 {flex-basis: 16.66%;}
.col-3 {flex-basis: 25%;}
.col-4 {flex-basis: 33.33%;}
.col-5 {flex-basis: 41.66%;}
.col-6 {flex-basis: 50%;}
.col-7 {flex-basis: 58.33%;}
.col-8 {flex-basis: 66.66%;}
.col-9 {flex-basis: 75%;}
.col-10 {flex-basis: 83.33%;}
.col-11 {flex-basis: 91.66%;}
.col-12 {flex-basis: 100%;}
}
@media all and (max-width: 768px){
.col-1 {flex-basis: 100;} /* width works too */
.col-2 {flex-basis: 100;}
.col-3 {flex-basis: 100;}
.col-4 {flex-basis: 100;}
.col-5 {flex-basis: 100;}
.col-6 {flex-basis: 100;}
.col-7 {flex-basis: 100;}
.col-8 {flex-basis: 100;}
.col-9 {flex-basis: 100;}
.col-10 {flex-basis: 100%;}
.col-11 {flex-basis: 100%;}
.col-12 {flex-basis: 100%;}
}
.row{
display: flex;
flex-wrap: wrap;
}
.container{
max-width: 1024px;
width: 100%;
margin: 0 auto;
}
.imageStyle{
border-radius: 10%;
width: 250px;
height: 250px;
object-fit: cover;
}
.imageStyle2{
object-fit: cover;
}
.highlight{
background-color:bisque;
border-radius: 30%;
}
.highlight2{
background-color:lightskyblue;
border-radius: 30%;
}