1
|
.box {
|
2
|
width:600px;
|
3
|
margin-left: auto;
|
4
|
margin-right: auto;
|
5
|
margin-top: 50px;
|
6
|
background-color: white;
|
7
|
-webkit-box-shadow: 1px 1px 15px #999999;
|
8
|
-moz-box-shadow: 1px 1px 15px #999999;
|
9
|
box-shadow: 1px 1px 15px #999999;
|
10
|
-webkit-border-radius: 8px;
|
11
|
-moz-border-radius: 8px;
|
12
|
border-radius: 8px;
|
13
|
overflow: auto;
|
14
|
padding: 1.268em;
|
15
|
}
|
16
|
|
17
|
body {
|
18
|
font-family:Verdana, Geneva, sans-serif;
|
19
|
font-size: 12px;
|
20
|
}
|
21
|
|
22
|
h1 {
|
23
|
font-size: 13px;
|
24
|
padding-bottom: 12px;
|
25
|
}
|
26
|
|
27
|
a {
|
28
|
color: #00247D;
|
29
|
text-decoration: underline;
|
30
|
}
|
31
|
|
32
|
a:visited {
|
33
|
color: #00247D;
|
34
|
text-decoration: underline;
|
35
|
}
|
36
|
|
37
|
a:focus, a:hover, a:active {
|
38
|
color: #F39800;
|
39
|
text-decoration: underline;
|
40
|
}
|
41
|
|
42
|
#tou-content {
|
43
|
font-family:monospace;
|
44
|
width: 95%;
|
45
|
border: solid 1px #666;
|
46
|
margin: 4px;
|
47
|
padding: 10px;
|
48
|
overflow: hidden;
|
49
|
}
|
50
|
|
51
|
#tou-content li{
|
52
|
margin-bottom:10px;
|
53
|
}
|
54
|
|
55
|
#tou-acceptance {
|
56
|
width: 95%;
|
57
|
border: solid 1px #666;
|
58
|
background-color: #F0F0F0;
|
59
|
margin: 4px;
|
60
|
padding: 10px;
|
61
|
text-align: left;
|
62
|
overflow: hidden;
|
63
|
}
|
64
|
|
65
|
.service_name {
|
66
|
font-weight: bold;
|
67
|
}
|
68
|
|
69
|
.service_description {
|
70
|
font-style: italic;
|
71
|
}
|
72
|
|
73
|
.organization_name {
|
74
|
}
|
75
|
|
76
|
#attributeRelease-consent {
|
77
|
width: 95%;
|
78
|
border: solid 1px #666;
|
79
|
background-color: #F0F0F0;
|
80
|
margin: 4px;
|
81
|
overflow: hidden;
|
82
|
}
|
83
|
|
84
|
#attributeRelease {
|
85
|
width: 95%;
|
86
|
margin: 4px;
|
87
|
border: solid 1px black;
|
88
|
overflow: auto;
|
89
|
}
|
90
|
|
91
|
#attributeRelease table {
|
92
|
border-collapse: collapse;
|
93
|
border: none 0px white;
|
94
|
width: 100%;
|
95
|
}
|
96
|
|
97
|
#attributeRelease td {
|
98
|
padding: 3px 7px;
|
99
|
vertical-align: top;
|
100
|
}
|
101
|
|
102
|
#attributeRelease th {
|
103
|
text-align: left;
|
104
|
font-size: 18px;
|
105
|
padding: 5px 7px;
|
106
|
background-color:#00247D;
|
107
|
color: white;
|
108
|
}
|
109
|
|
110
|
#attributeRelease tr:nth-of-type(even) {
|
111
|
background-color: #E4E5E3;
|
112
|
}
|
113
|
|
114
|
.federation_logo
|
115
|
{
|
116
|
width: 50%;
|
117
|
float: left;
|
118
|
padding-top: 35px;
|
119
|
border: 0;
|
120
|
}
|
121
|
.organization_logo
|
122
|
{
|
123
|
width: 50%;
|
124
|
float: right;
|
125
|
border: 0;
|
126
|
}
|
127
|
|
128
|
.form-error {
|
129
|
padding: 0;
|
130
|
color: #B61601;
|
131
|
}
|
132
|
|
133
|
/* Device specific styles */
|
134
|
@media only screen and (max-device-width: 721px){
|
135
|
.box {
|
136
|
width: auto;
|
137
|
box-shadow: none;
|
138
|
border-radius: 0;
|
139
|
-webkit-box-shadow: none;
|
140
|
-webkit-border-radius: 0;
|
141
|
-moz-box-shadow: none;
|
142
|
-moz-border-radius: 0;
|
143
|
padding: 0;
|
144
|
margin-top:0;
|
145
|
}
|
146
|
#tou-content, #tou-acceptance{
|
147
|
/*width:87%;*/
|
148
|
width:auto;
|
149
|
}
|
150
|
}
|