-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (62 loc) · 1.14 KB
/
main.css
File metadata and controls
63 lines (62 loc) · 1.14 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
@import url('https://fonts.googleapis.com/css?family=Supermercado+One');
body, html{
margin:0;
padding: 0;
font-family: 'Supermercado One', cursive;
position: relative;
}
div.user{
width: 40vw;
background-color: white;
box-shadow: 0 0 6px 6px rgba(0,0,0,.05), 0 0 3px 3px rgba(0,0,0,.1);
margin: auto;
position: absolute;
top: 25%;
left: 50%;
transform: translate(-50%, -50%);
}
div.user > div.header{
height: 100px;
background-color: rgb(143, 183, 55);
text-align: center;
line-height: 40px;
font-size: 28px;
position: relative;
margin-bottom: 60px;
}
img{
width: 120px;
height: 120px;
border-radius: 50%;
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, 50%);
}
div.data > div{
line-height: 30px;
font-size: 18px;
padding: 0 32px;
cursor: pointer;
}
div.data > div:hover{
color: rgb(143, 183, 55);
}
div.user > footer{
margin-top: 5px;
height: 40px;
text-align: center;
background-color: rgb(143, 183, 55);
line-height: 40px;
}
button {
width: 60%;
display: block;
margin: auto;
border-radius: 0;
background-color: rgb(143, 183, 55);
color: white;
font-size: 18px;
margin-top: 15px;
border: none;
}