-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
132 lines (106 loc) · 1.94 KB
/
style3.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
body {
background-color: rgb(13, 13, 14);
}
.w3-bar-item {
display: inline;
color: pink;
font-size: 25px;
margin: 0 10px;
}
.w3-button {
color: black;
}
.w3-button:hover {
color: pink;
}
.w3-black {
background-image: radial-gradient(yellow 5%,
pink 10%,
black 80%);
text-align: center;
position: fixed;
width: 100%;
}
.guestbook {
text-align: center;
font-size: 50px;
border: 10px groove red;
border-radius: 50px;
position: relative;
transform: translateY(40px);
}
.blogform {
color: white;
}
.imggrid {
padding: 15px;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
margin-left: auto;
margin-right: auto;
}
/* Create two equal columns that sits next to each other */
.column {
flex: 50%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
img {
width: 200px;
height: 200px;
}
.favarticle {
border: 5px outset red;
border-radius: 30%;
width: 350px;
text-align: center;
margin-right: auto;
margin-left: auto;
}
.bloghead {
border: 6px outset brown;
height: 150px;
border-radius: 40%;
text-align: center;
align-items: center;
margin-right: auto;
margin-left: auto;
}
.grid-container>div {
background-color: rgb(87, 2, 126);
text-align: center;
padding: 20px 0;
font-size: 30px;
color: black;
}
.item1 {
grid-area: myArea;
}
.grid-container {
display: grid;
grid-template-areas: 'myArea myArea myArea myArea';
gap: 10px;
background-color: #000000;
padding: 10px;
}
.grid-container2>div {
background-color: rgb(0, 66, 248);
text-align: center;
padding: 20px 0;
font-size: 30px;
color: black;
}
.grid-container2 {
display: grid;
grid-template-areas: 'myArea myArea myArea myArea';
gap: 10px;
background-color: #000000;
padding: 10px;
justify-content: center;
}