-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsession_expired_style.css
112 lines (88 loc) · 1.68 KB
/
session_expired_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
body {
background-color: #FAFAFA;
}
.flex-container {
display: -webkit-flex;
display: flex;
flex-direction: column;
width: auto;
height: auto;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
img[id="session"] {
max-width: 100%;
max-height: 100%;
}
.flex-item {
width: auto;
height: auto;
margin: 10px;
margin-left: auto;
margin-right: auto;
}
.flex-item-message {
width: auto;
max-width: 500px;
height: auto;
margin: 10px;
margin-left: auto;
margin-right: auto;
}
h1[id="session"] {
font-size: 40px;
text-align: center;
font-family: Roboto-Light;
margin: 10px;
margin-bottom: 20px;
color: black;
line-height: normal;
border-bottom: 2px solid black;
}
h1[id="session-sub"] {
font-size: 40px;
text-align: center;
font-family: Roboto-Light;
margin: 10px;
color: black;
line-height: normal;
}
p[id="session-sub"] {
font-size: 30px;
text-align: center;
font-family: Roboto-Regular;
margin: 10px;
margin-bottom: 20px;
line-height: normal;
border-bottom: 2px solid black;
}
p[id="session"] {
font-size: 24px;
font-family: Roboto-Regular;
margin: 10px;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
font-family: OpenSans-Bold;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 10px;
cursor: pointer;
border-radius: 3px;
}
.button:hover {
opacity: 0.8;
}
@media screen and (max-width: 480px) {
h1[id="session"] {
margin-top: 0px;
}
.button {
margin-top: 0px;
}
}