-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (89 loc) · 1.76 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
*
{
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
font-size:14px;
}
body{
background-color:hsl(0, 0%, 8%);
height: 100vh;
width: 100vw;
display: flex;
justify-content:center;
align-items:center;
}
#container
{
height:80%;
width: 350px;
background-color: hsl(0, 0%, 12%);
text-align: center;
display:flex;
flex-direction: column;
align-items:center;
border-radius:10px;
position:relative;
border: 1px solid rgb(0, 255, 76);
box-shadow: 0px 0px 10px 1px rgb(0,255,76);
}
#img{
height:100px;
width:100px;;
border-radius: 50%;
background-image:url("ansuprofile.jpeg");
background-size: cover;
margin-top: 30px;
}
#name
{
color: white;
font-weight:600;
font-size: 20px;
font-family:Arial, Helvetica, sans-serif;
}
#location
{
font-size: 12px;
color: hsl(75, 94%, 57%);
margin-top: 6px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.boxes
{
width:80%;
position:absolute;
bottom:20px;
}
.box
{
height: 35px;
width: 100%;
background-color:hsl(0, 0%, 20%);
margin-bottom: 12px;
border-radius:5px;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-family:Arial, Helvetica, sans-serif;
font-weight: bold;
text-decoration:none;
border: 0.1px solid white;
}
.box:hover{
background-color:rgb(255, 208, 0);
color:black;
border:0.1px solid transparent ;
}
.box:active{
background-color:rgb(255, 208, 0, 0.5);
color:black;
border:0.1px solid transparent ;
}
@media (max-width:375px){
#container{
height:75%;
width:80%;
}
}