-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_sheet.css
More file actions
134 lines (117 loc) · 2.69 KB
/
Copy pathstyle_sheet.css
File metadata and controls
134 lines (117 loc) · 2.69 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
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
.first{
display: flex;
flex-direction: row;
width:100%;
background-color: green;
}
.imgcol{
background-color: aliceblue;
flex-grow: 2;
margin: 2px 2px;
padding: 2px 2px;
border-style: hidden;
border-radius: 1000px;
}
.text_col{
flex-grow: 2;
margin: 2px 2px 2px 2px;
padding: 2px 2px;
color: white;
}
.align_mid{
text-align: center;
}
.nav{
display:flex;
flex-direction: row;
background-color: black;
align-content: center;
text-align: center;
height: 60px;
}
.link{
color: white;
margin: 18px 14px 14px 10px;
text-decoration:none;
font-size: 20px;
}
a:hover{
color:turquoise;
}
.breadcumb{
margin: 5px 25px 0px 25px;
border-radius:50px;
}
.header{
background-color: black;
}
.PermanentMarker{
font-family: "Permanent Marker";
font-style: italic;
color: white;
}
.footer{
background-color: black;
display:flex;
flex-direction: row;
}
.rows{
display: flex;
flex-direction: column;
margin: 0px 30px 0px 10px;
}
.grow{
flex-grow: 1;
}
.quote{
font-size: 20px;
text-align: center;
}
.lead{
display: grid;
grid-template-columns: 33% 33% 33% ;
background-color: beige;
padding: 30px 0px;
column-gap: 2px;
}
.button{
color: white;
background-color:black;
border-radius: 10px;
align-self: center;
font-size: 18px;
}
button:hover{
color:black;
background-color: white;
}
.img{
display: block;
margin-left: auto;
margin-right: auto;
width: 80%;
height:44%;
}
p{
font-size: 20px;
}
h2{
font-size: 32px;
font-family: "Permanent Marker";
text-align: center;
}
.block3{
display: grid;
grid-template-columns: 50% 50% ;
background-color: beige;
padding: 30px 0px;
column-gap: 2px;
}
.block4{
display: grid;
grid-template-columns: 25% 25% 25% 25%;
background-color: beige;
padding: 30px 0px;
column-gap: 2px;
}