-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
125 lines (107 loc) · 2.25 KB
/
style.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
* {
padding: 0;
margin: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: white;
background: rgb(24, 29, 36);
}
h1 a {
color: white;
text-decoration: none;
}
h1 .navactive {
text-decoration: underline;
}
.box {
border-radius: 7px;
max-width: 700px;
margin: auto;
text-align: center;
margin-top: 25px;
box-shadow: 0px 3px 10px 0px black;
font-size: 20px;
}
.iconcontainer {
display: flex;
justify-content: center;
}
.iconcontainer a img,svg{
width: 36px;
height: 36px;
margin: 6px;
padding: 7px;
border-radius: 7px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.855) 80%, rgba(213, 213, 213, 0.855)100%);
}
.box1 {
background: linear-gradient(0deg, rgb(106, 1, 1) 0%, rgba(191, 0, 0, 0.783)100%);
}
.box1container {
display: grid;
grid-template-columns: 120px;
grid-template-areas:
"avatar name"
"avatar info";
padding: 10px;
}
.box1item1 {
grid-area: avatar;
border-radius: 100%;
width: 100px;
}
.box1item2 {
grid-area: name;
font-weight: bold;
text-align: left;
font-size: 26px;
}
.box1item3 {
grid-area: info;
text-align: left;
}
.box2 {
background: linear-gradient(0deg, rgb(3, 1, 146) 0%, rgba(11, 0, 227, 0.783)100%);
}
.box3 {
background: linear-gradient(0deg, rgba(122, 0, 98, 0.938) 0%, rgba(166, 0, 133, 0.978)100%);
}
.box4 {
background: linear-gradient(0deg, rgb(4, 134, 0) 0%, rgba(0, 227, 8, 0.783)100%);
}
.projectscontainer {
text-align: left;
margin: 10px;
background:rgb(71, 71, 71);
padding: 10px;
border-radius: 5px;
box-shadow: 0px 3px 10px 0px black;
}
.projectscontainer b {
letter-spacing: 1px;
font-size: 22px;
}
.projectscontainer img {
margin: 7px;
max-width: 95%;
border-radius: 4px;
border: solid white 1px;
box-shadow: 0px 3px 10px 0px black;
}
.projectscontainer a {
color: rgb(0, 140, 255);
}
.list{
text-align: left;
padding: 12px;
}
.linkcolor {
color: rgb(0, 115, 255);
text-decoration: none;
}
@media only screen and (max-width: 620px) {
.box {
max-width: 95%;
}
}