-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
112 lines (93 loc) · 1.74 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
.profile-picture {
border-radius: 50%;
}
html, body {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
margin: 0px;
padding: 0px;
font-family: 'Open Sans', sans-serif;
}
.name {
font-family: 'Righteous', cursive;
margin-bottom: 2px;
}
.wrapper {
background-color: lightpink;
max-width: 50%;
display: flex;
flex-direction: row;
height: 80%;
}
.left, .right {
background-color: pink;
margin: 5px;
max-width: 50%;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.left {
align-items: center;
justify-content: center;
}
.profile-picture {
border-radius: 50%;
}
.social-links {
list-style: none;
padding-left: 0px;
font-size: 18px;
}
.social-links li {
display: inline-block;
margin-right: 8px;
}
.social-links a {
text-decoration: none;
padding: 4px;
}
.social-links a:hover {
background-color: rgba(0, 0, 0, 0.1);
}
body {
background: linear-gradient(to bottom, rgba(231, 240, 245, 1) 0%, rgba(170, 221, 235, 1) 100%);
}
button.blue {
background: #00BFFF;
color: black;
width: 550px;
max-width: 100%;
height: 60px;
max-height: 100%;
padding: 10px;
border: 1px #99e6ff solid;
box-shadow: inset 0 1px 0 #80B0FB;
font-size: 20px;
border-radius: 20px;
}
button.blue:hover {
border: 1px #2F5BB7 solid;
box-shadow: 0 1px 1px #EAEAEA, inset 0 1px 0 #5A94F1;
background: #3F83F1;
}
button.blue:active {
box-shadow: inset 0 2px 5px #2370FE;
}
.blue img {
display: inline-block;
vertical-align: middle;
padding: 5px;
border-radius: 5px;
}
.blue span
{
display:inline-block;
width: 120px;
margin-top: 10px;
margin-left: 10px;
vertical-align: middle;
}