-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (98 loc) · 1.5 KB
/
style.css
File metadata and controls
98 lines (98 loc) · 1.5 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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
* {
box-sizing: border-box;
}
body {
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #A9C9FF;
background-image: linear-gradient(180deg, #A9C9FF 0%, #FFBBEC 100%);
font-family: 'Oswald', sans-serif;
}
.intro {
width: 80%;
margin: auto;
text-align: center
}
h1 {
font-size: 70px;
text-align: center;
}
h2 {
text-align: center;
}
.repo {
width: 80%;
margin: auto;
background-color: rgb(255,255,255,0.5);
border: 1px solid white;
padding: 20px;
margin: 30px;
border-radius: 5%
}
.projects {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
a {
text-decoration: none;
color:black
}
h3 {
font-size: 30px;
}
a:hover {
color: rgb(247, 91, 208);
font-family: 'Bebas Neue', cursive;
;
}
.picture {
width: 80%;
border-radius: 50%;
opacity: 0.8
}
.picture:hover{opacity: 1.0}
.logo {
width: 30px;
}
.chart {
position: absolute;
left: 0;
right: 0;
margin: auto;
width: 400px
}
.userinfo {
padding: 20px;
}
@media only screen and (min-width: 600px) {
.repo {
width: 40%
}
.chart {
width: 600px
}
}
@media only screen and (min-width: 992px) {
.repo {
width: 20%
}
.picture {
width: 20%;
}
.intro {
display: flex;
align-items: center;
justify-content: center;
}
h2 {
font-size: 35px;
text-align: left;
margin-left: 10px;
}
.chart {
width: 40%
}
}