-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (76 loc) · 1.44 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
*{
box-sizing: border-box;
}
.column{
display: grid;
}
body{
margin: 2;
background-color:lavender;
}
header{
display: flex;
font-size: 5rem;
justify-content: center;
background-color:black;
}
header p{
color:whitesmoke;
border: 5px solid;
padding: 15px;
display: inline-block;
border-radius: 3px;
text-align: center;
font-size: 50px;
font-family: gamarond, serif;
font-weight: 2000px;
color: white;
text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}
.row{
display: flex;
flex-wrap: wrap;
padding: 2px 4px;
}
.column{
flex: 30%;
padding: 6px 15px;
border: orangered;
}
.column img{
margin-top: 10px;
margin-bottom: 10px;
width: 100%;
}
footer p {
font-weight: 50px;
font-size: 25px;
background-color: darkslateblue;
text-align: center;
color: cornsilk;
text-align: right;
padding: 5px;
box-sizing: border-box;
border-radius: 40px;
font-style: inherit;
font-family: papyrus ,fantasy;
}
.column img
{
border-radius: 1.5rem;
box-shadow: 8rem;
border: 4.8px solid white;
box-shadow: 7px 8px 10px rgba(120,112,112,0.922) ;
}
@media screen and (max-width:800px) {
.column{
flex: 50%;
padding: 0px 10px;
}
}
@media screen and (max-width:600px) {
.column{
flex: 100%;
padding: 0px 10px;
}
}