-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (102 loc) · 1.46 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
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
@font-face {
font-family: "Rockwell";
src: url("fonts/ROCK.TTF") format("truetype"); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
html {
height: 100%;
}
body {
max-width: 100%;
overflow-x: hidden;
min-height: 100%;
/* background-color: rgb(245, 222, 151); */
background-image: url("hacks22_banner.png");
background-size: cover;
background-repeat: no-repeat;
font-size: 3vw;
font-family:'Rockwell';
color: white;
}
.title{
}
.event{
}
.bar{
}
/* just says "current time */
#current_time_div{
margin:5vh;
}
/* actually has time */
#current_time{
}
#cur_event_time {
top:15vw;
}
#cur_event_bar{
top:15vw;
background-color: #c2dee2;
width: .5vw;
height: 13vw;
}
#cur_title{
top:15vw;
color: #c2dee2;
}
#cur_event{
top:20vw;
}
#cur_event_location{
top:20vw;
}
#next_event_time{
top:30vw;
}
#next_event_bar{
top:30vw;
background-color: #dcf456;
width: .5vw;
height: 13vw;
}
#next_title{
top:30vw;
color: #dcf456;
}
#next_event{
top:35vw;
}
#next_event_location{
top:35vw;
}
.title{
position:absolute;
left: 47vw;
}
.description {
position:absolute;
left: 52vw;
}
.time{
position:absolute;
right: 59vw;
text-align: right;
}
.bar{
position:absolute;
left: 43.75vw;
}
.location{
position:absolute;
right: 59vw;
text-align: right;
}
#dashboard_hacks_22{
display:block;
max-width:400px;
min-width:100px;
position:fixed;
right:10px;
top:10px;
width:10%;
z-index:10000;
}