-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (62 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (62 loc) · 1.12 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
body {
background-image: url("images/bild_1.jpg");
background-size: cover;
font-family: arial;
color: rgb(61, 158, 185);
font-size: 25px;
line-height: 1.4;
text-align: center;
}
h1,
h2 {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 40px;
line-height: 2;
}
a {
color: rgb(197, 81, 151);
text-decoration: none;
&:hover {
color: black;
}
}
.container {
text-align: center;
background-color: rgba(255, 255, 255, 0.8);
padding: 10px;
border: 10px solid rgb(227, 17, 175);
width: 1000px;
/* Set the width */
margin: 40px auto;
border-radius: 40px;
}
@container (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@container (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@container (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}
a {
display: block;
}
}
a > i {
font-size: 70px;
}
profilepic {
width: 400px;
height: 400px;
border-radius: 50%;
}