-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
131 lines (125 loc) · 2.23 KB
/
styles.css
File metadata and controls
131 lines (125 loc) · 2.23 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
* {
margin: 0;
padding: 0;
}
body {
background-color: #e0c2e2;
color: #000;
}
header {
padding: 100px 0 50px 0;
text-align: center;
}
h1 {
margin-bottom: 10px;
font: 600 70px "Pacific", cursive;
}
h2 {
color: #000;
margin-bottom: 30px;
font: 400 40px "Galada", cursive;
}
h3 {
color: #000;
font:300 30px "Galada", cursive;
}
section {
padding: 0 100px 0 100px;
}
ul {
list-style: none;
text-align: center;
}
li {
padding: 20px;
font:100 50px "GAlada", cursive;
display: inline-block;
justify-content: space-between;
gap: 2px;
}
footer {
background-image: url(../image/background_footer.png);
background-size: cover;
background-repeat: no-repeat;
height: 80px;
color: #7824A8;
}
@media screen and (mind-width:780px) {
.full-width-img {
margin: auto;
width: 90%;
}
#info {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px 30px;
margin-top: 5px;
margin-bottom: 5px;
}
}
i:hover {
color: #fff;
}
/* grid selectors */
#info img {
grid-row: 1/3;
}
#stud {
grid-column: 2/3;
grid-row: 1/2;
}
#fut {
grid-column: 2/3;
grid-row: 2/3;
}
/* hereditariant selectors */
#info img {
border-left: 5px solid #7824A8;
}
#text p {
font: 100 20px "Edu NSW ACT Foundation", cursive;
}
li img {
height: 25px;
position: relative;
top: 8px;
}
footer li {
font-size: 20px;
}
/* IDs selectors */
#info {
height: 250px;
border-bottom:5px solid #7824A8;
display: grid;
grid-template-columns: 250px 1fr;
}
#personal {
padding-top: 150px;
color: #000;
}
#known {
text-align: center;
font-size: 35px;
border-bottom: 3px solid #7824A8;
}
#text {
padding: 5px;
border: 10px solid #7824A8;
border-radius: 8px;
width: 500px;
display: flex;
}
#foot {
text-align: left;
gap: 5px;
}
/* class selector */
.tech {
padding-top: 100px;
text-align: center;
font-size: 35px;
border-bottom: 3px solid #7824A8;
}