forked from ThaiProgrammer/code-mania-110
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (73 loc) · 1.54 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
/* Global */
html {}
body {
margin: 0;
font-family: 'Kanit', sans-serif;
font-size: 14px;
}
/* set section container */
section {
margin: 0 auto;
width: 1140px;
margin: 0;
background: black;
color: #fff;
}
a {}
/* Event info */
#event-info {
background-color: black;
color: #fff;
color: rgba(255,255,255,1);
text-align: center;
text-overflow: clip;
white-space: pre;
text-shadow: 0 0 10px rgba(255,255,255,1) , 0 0 20px rgba(255,255,255,1) , 0 0 30px rgba(255,255,255,1) , 0 0 40px #ff00de , 0 0 70px #ff00de , 0 0 80px #ff00de , 0 0 100px #ff00de ;
transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
padding: 20px;
}
#event-info__title {
font-size: 40px;
padding: 0;
margin: 0;
}
#event-info__tagline {
padding: 0 20px;
margin: 0;
}
#event-info__date {
padding: 0 20px;
margin: 0;
}
#event-info__place {
padding: 0 20px;
margin: 0;
}
/* Event description */
#event-description {}
/* Sessions */
#sessions {}
#sessions__heading {}
.sessions__list {}
.sessions__list>li {}
/* Session */
.session-time {}
.session-item {}
.session-item__room {}
.session-item__speaker {}
.session-item__title {}
.session-item__description {}
#sponsors-list {
display: flex;
justify-content: space-between;
align-items: center;
margin: 5px 50px;
}
#sprint3r {
width: 200px;
height: 200px;
background: url("http://sprint3r.com/assets/img/sprint3r-cover.png");
background-size: 300px;
background-repeat: no-repeat;
background-position: center;
}