-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
118 lines (114 loc) · 1.34 KB
/
responsive.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
112
113
114
115
116
117
118
*{
padding:0;
margin:0;
}
body
{
background-color: black;
overflow-x: none;
}
.footer
{
position: absolute;
top:0;
width: 100%;
height: 5%;
color:white;
background-image: linear-gradient(grey,black);
font-size: 1vh;
}
.Status
{
position: absolute;
bottom: 1vh;
left: 10%;
color: white;
text-decoration: none;
}
.Events
{
position: absolute;
bottom: 1vh;
left: 45%;
color: white;
text-decoration: none;
}
.Logout
{
position: absolute;
bottom: 1vh;
left: 80%;
color: white;
text-decoration: none;
}
.profile
{
position: absolute;
top: 5%;
color: white;
width: 100%;
left: 0;
overflow-x: hidden;
text-align: center;
font-size: 1vh;
}
.profile img
{
padding-top: 5%;
left: 30%;
width: 30%;
height: 40%;
border-style: solid;
border-color: black;
border-radius: 50%;
}
.details
{
text-align: center;
color: white;
top: 50%;
}
.progressdiv , .progressbar
{
display: none;
}
.List
{
padding-top: 10%;
position: absolute;
top: 30%;
width: 100%;
font-size: 1.6vh;
text-align: center;
overflow-x: hidden;
}
#card
{
position: relative;
width: 80%;
left: 10%;
height: 50%;
color: white;
}
.title
{
text-align: center;
padding-top:2vh;
}
.button
{
text-align: center;
}
button
{
cursor: default;
background-color: black;
color: white;
border:none;
padding: 4vh;
font-size: 1.5vh;
}
/*.large-header
{
display: none;
}*/