-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sstyle.css
99 lines (81 loc) · 2.16 KB
/
Sstyle.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
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&display=swap');
body {
background-color: rgba(11, 154, 80, 0.8);
}
header {
background-color: rgb(11, 154, 80);
align-items: center;
justify-content: center;
font-family: Dancing Script;
font-size: 30px;
text-align: center;
}
header img {
border-radius: 100ex;
width: 200px;
height: 200px;
margin-top: 50px;
}
nav {
display:flex;
flex-direction: row;
}
nav a {
align-items: center;
justify-items: center;
margin: auto;
margin-bottom: 20px;
text-decoration: none;
}
.nav-icin {
width: 70px;
height: 70px;
}
.Flex-columns {
display: flex;
text-align: center;
}
.Flex-column {
display: flex;
flex-direction: column;
flex-grow: 2;
margin: 20px;
}
main {
background-color: rgb(11, 154, 80);
font-family: Dancing Script;
font-size: 30px;
}
section {
margin: 20px;
display: flexbox;
}
section ul {
list-style-type: none;
}
section ul li::before {
content: "👉";
}
.link {
text-decoration: none;
}
footer {
background-color: rgb(11, 154, 80);
font-family: Dancing Script;
font-size: 20px;
text-align: center;
}
/* mob */
@media screen and (max-width: 600px) {
.Flex-columns {
display: flex;
flex-direction: column-reverse;
align-items: center;
justify-items: center;
text-align: center;
}
.Flex-column{
display: flex;
flex-direction: column;
}
}