forked from COP-4710/Event_Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
150 lines (146 loc) · 2.2 KB
/
style.css
File metadata and controls
150 lines (146 loc) · 2.2 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body
{
margin: 0;
padding: 0;
font-family:
}
section
{
width: 100%;
height: 100vh;
background: url(bg.jpg);
background-size: cover;
}
section .userBox
{
width: 50%;
height: 100%;
float: right;
padding: 50px;
box-sizing: border-box;
}
section .userBox .content
{
color: #fff;
background: rgba(0,0,0,.7);
padding: 100px;
transition: .5s;
}
section .userBox .content p
{
margin: 5px
padding:0;
}
section .userBox .content a
{
display: inline-block;
col
text-decoration: none;
text-transform: none;
padding: 10px 15px;
border-color: : 2px solid rgb(254, 195, 10);
font-size: 18px;
margin-top: 15px;
transition: .2s;
float: left;
padding: 0;
}
section .events
{
position: relative;
height: 100%;
width: 50%;
background: rgba(0, 0, 0, 0.5);
float:left;
box-sizing: border-box;
overflow-y: auto;
}
section .events ul
{
position: absolute;
top: 0%;
transform: translateY(0%);
margin: 0px;
padding: 40px;
box-sizing: border-box;
}
section .events ul li
{
list-style: none;
background: #fff;
box-sizing: border-box;
height: 200px;
width: 600px;
margin: 15px 0;
}
section .events ul li .time
{
position: relative;
padding: 20px;
background: #262626;
box-sizing: border-box;
width: 30%;
height: 100%;
float: left;
text-align: center;
transition: .5s;
}
section .events ul li:hover .time
/*254 195 10*/
{
background: rgb(254, 195, 10);
}
section .events ul li .time h2
{
position: absolute;
margin: 0;
padding: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 25px;
}
section .events ul li .time h2 span
{
font-size: 30px;
}
section .events ul li .details
{
padding: 20px;
background: #fff;
box-sizing: border-box;
width: 70%;
height: 100%;
float: left;
}
section .events ul li .details h3
{
position: relative;
margin: 0;
padding: 0;
font-size: 24px;
}
section .events ul li .details p
{
position: relative;
margin: 0;
padding: 0;
font-size: 16px;
}
section .events ul li .details form
{
float: right;
}
section .events ul li .details a
{
display: inline-block;
text-decoration: none;
text-transform: none;
padding: 10px 15px;
border: 2px solid rgb(254, 195, 10);
font-size: 18px;
margin-top: 15px;
transition: .2s;
float:right;
}