forked from Arcuya/Prism
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
144 lines (144 loc) · 3.1 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
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
* {
font-family: "Roboto", "ぼくたちのゴシック2ボールド" !important;
outline: none;
}
html,
body {
height: 100% !important;
padding: 0;
margin: 0;
overflow: hidden;
}
#container {
/* MAIN CONTAINER */
background: #F9F9F9;
width: 100%;
height: 100%;
margin: auto;
text-align: center;
}
#banner {
background: no-repeat url("background/background_01.png") center 60%;
background-size: cover;
height: 25%;
width: 100%
}
#banner #message {
background: rgba(33, 33, 33, .5);
height: 100% !important;
width: inherit;
display: flex;
align-items: center;
justify-content: center;
}
#banner #message #message_box {
color: #FFF;
font-family: "Bebas Neue" !important;
font-size: 40pt;
font-weight: bold;
letter-spacing: 10px !important;
}
#banner #time_box {
color: #7E7E7E;
right: 20px;
text-align: right;
}
#banner #day_box {
color: #00B5B5;
left: 20px;
text-align: left;
}
#banner #time_box,
#banner #day_box {
background: #FFF;
box-shadow: 0px 1px 2px rgba(0,0,0,.1) !important;
border-radius: 2px !important;
font-family: "Roboto";
font-size: 14pt;
font-stretch: condensed;
padding: 10px 15px;
width: auto !important;
position: absolute;
bottom: 20px;
}
#searchbox {
border: none;
box-shadow: 0px 1px 2px rgba(0,0,0,.1) !important;
color: #60646D;
font-size: 11pt !important;
font-stretch: condensed;
font-weight: bold;
letter-spacing: .2px !important;
text-transform: uppercase;
height: 40px;
width: 100%;
padding: 15px 20px
}
#image-button {
background-color: transparent;
background-image: url("icons/search_icon.png");
background-position: center;
background-repeat: no-repeat;
background-size: 18px auto;
border: none;
position: absolute;
height: 70px;
width: 70px;
margin-top: -70px;
right: 1px;
}
#main {
height: 100%;
width: 100%;
padding: 22px 0px;
margin-top: 60px;
}
.card {
background: #F6F7FB;
box-shadow: 0px 1px 2px rgba(0,0,0,.2);
border-radius: 2px;
width: 12vw;
height: auto;
padding-bottom: 1.2vw;
margin-bottom: 20px;
margin-right: 15px;
display: inline-block !important;
text-align: center;
}
.card .avatar {
border-radius: 50%;
box-shadow: 0px 1px 2px rgba(0,0,0,.1);
height: 8.5vw;
width: 8.5vw;
margin-top: 30px;
}
.card p {
color: #FFF;
font-family: "Roboto", "KFhimaji" !important;
font-stretch: condensed;
font-weight: bold;
letter-spacing: 4px;
text-transform: uppercase;
}
select {
background: #FFF;
border: none;
border-radius: 1.5px;
box-shadow: 0px 1px 2px rgba(0,0,0,.1);
color: inherit;
font-family: "Roboto", "KFhimaji" !important;
font-size: 11.5pt;
font-stretch: condensed;
font-weight: bold;
letter-spacing: .5px;
padding: 10px;
width: 83%;
text-align: center;
text-transform: uppercase;
margin-top: 14px;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: -2px;
text-overflow: ellipsis;
white-space: nowrap;
}