-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (61 loc) · 1.03 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
* {
padding: 0;
margin: 0;
}
body {
height: 100vh;
color: black;
background-color: grey;
display: flex;
justify-content: center;
align-items: center;
}
#page {
position: relative;
height: 100vh;
width: 60vw;
text-align: center;
padding: 5px;
}
#pagehead {
display: block;
text-align: center;
font-size: 60px;
margin-top: 90px;
margin-bottom: 50px;
}
.username {
height: 3rem;
width: 80%;
font-size: 18px;
border-radius: 25px;
margin: 15px;
text-align: center;
color: white;
background-color: black;
}
#fetchbtn {
height: 3rem;
width: 8rem;
background-color: orangered;
border: 0;
border-radius: 13px;
}
#userinfo {
height: 50vh;
font-size: 26px;
font-family: Baskerville, Baskerville Old Face, Garamond, Times New Roman, serif;
line-height: 3rem;
display: flex;
justify-content: space-evenly;
align-items: center;
}
#pfp {
height: 300px;
width: 300px;
border-radius: 50%;
margin-right: 10px;
margin-top: 20px;
padding: 2px;
border: 3px solid orangered;
}