-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
85 lines (75 loc) · 1.46 KB
/
main.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
/* CSS design originally by @jofpin, tweaked by Colt Steele */
@import url(https://fonts.googleapis.com/css?family=Raleway|Varela+Round|Coda);
body {
background: #ecf0f1;
padding: 2.23em;
}
.title {
color: #2c3e50;
font-family: "Coda", sans-serif;
text-align: center;
}
.user-profile {
margin: auto;
width: 27em;
height: 11em;
background: #fff;
border-radius: .3em;
}
.user-profile #fullname {
margin: auto;
margin-top: -4.40em;
margin-left: 5.80em;
color: #16a085;
font-size: 1.53em;
font-family: "Coda", sans-serif;
font-weight: bold;
}
#username {
margin: auto;
display: inline-block;
margin-left: 10.43em;
color: #3498db;
font-size: .87em;
font-family: "varela round", sans-serif;
}
.user-profile > .description {
margin: auto;
margin-top: 1.35em;
margin-right: 3em;
width: 18em;
color: #7f8c8d;
font-size: .87em;
font-family: "varela round", sans-serif;
}
.user-profile > img#avatar {
padding: .7em;
margin-left: .3em;
margin-top: .3em;
height: 6.23em;
width: 6.23em;
border-radius: 18em;
}
.footer {
margin: 2em auto;
height: 3.70em;
background: #16a085;
text-align: center;
border-radius: 0 0 .3em .3em;
display: flex;
justify-content: center;
align-items: center;
transition: background 0.1s;
}
button {
color: white;
font-family: "Coda", sans-serif;
text-align: center;
font-size: 20px;
background: none;
outline: none;
border: 0;
}
.footer:hover {
background: #1abc9c;
}