-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (102 loc) · 2.32 KB
/
styles.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
body, html {
margin: 0;
padding: 0;
}
body {
background: url(/https/github.com/assets/background/pexels-irina-iriser.jpg);
background-size: cover;
background-attachment: fixed;
background-position: center;
font-family: 'Roboto Mono', monospace;
}
/*Profile Icon*/
header {
margin-top: 1.5em;
align-items: center;
display: flex;
flex-direction: column;
}
header > img {
border-radius: 100%;
width: 10rem;
height: 10rem;
border: 2px double wheat;
}
header > h1 {
display: inline-block;
margin-top: 8px;
font-size: 17px;
border-radius: 20px;
padding: 0.27em 0.38em;
background-image: linear-gradient(45deg, #95ecb0, #f3f98a);
}
/*Links*/
.twitter {
box-sizing: border-box;
margin: 1.5em auto;
padding: 1.1em;
display: flex;
width: 50%;
border-radius: 50px;
justify-content: center;
background: linear-gradient(45deg, rgba(195,88,34,0.9360119047619048) 0%, rgba(253,237,45,1) 100%);
gap: 0.5em;
}
.twitter > a {
text-decoration: none;
color:white;
}
.github {
box-sizing: border-box;
margin: 1.5em auto;
padding: 1.1em;
display: flex;
width: 50%;
border-radius: 50px;
justify-content: center;
background: linear-gradient(45deg, rgba(195,88,34,0.9360119047619048) 0%, rgba(253,237,45,1) 100%);
gap: 0.5em;
}
.github > a {
text-decoration: none;
color:white;
}
.facebook {
box-sizing: border-box;
margin: 1.5em auto;
padding: 1.1em;
display: flex;
width: 50%;
border-radius: 50px;
justify-content: center;
background: linear-gradient(45deg, rgba(195,88,34,0.9360119047619048) 0%, rgba(253,237,45,1) 100%);
gap: 0.5em;
}
.facebook > a {
text-decoration: none;
color:white;
}
.karyakarsa {
box-sizing: border-box;
margin: 1.5em auto;
padding: 1.1em;
display: flex;
width: 50%;
border-radius: 50px;
justify-content: center;
background: linear-gradient(45deg, rgba(195,88,34,0.9360119047619048) 0%, rgba(253,237,45,1) 100%);
gap: 0.5em;
}
.karyakarsa > a {
text-decoration: none;
color:white;
}
/*footer*/
footer {
display: flex;
justify-content: center;
color: ivory;
}
p {
font-size: 18px;
}