-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
90 lines (85 loc) · 1.96 KB
/
layout.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
body{
background-color: white;
}
h1 {
color: #147581;
}
h1, section, div#score_key, div#therapistList {
text-align: center;
}
h2#notDepressed {
color: green;
}
h2#Depressed {
color: orange;
}
li {
background-color: #DDE6F2;
padding: 9px;
margin:9px;
box-shadow: 3px 3px 3px #555;
border-radius: 3px;
}
li > div > input {
margin: 3px;
}
li > div > p {
font-size: larger;
}
button {
margin: 5px 5px 5px 5px;
padding: 19px;
border-radius: 4px;
border-width: 1px;
color: #147581;
display: inline-block;
font-size: larger;
font-weight: 800;
background-color: white;
right: 0px;
}
button:hover {
color:white;
background-color: #147581;
}
input[type="radio"] {
background-color: black !important;
}
/* The Overlay (background) */
.overlay {
/* Height & width depends on how you want to reveal the overlay (see JS below) */
height: 100%;
width: 0;
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
background-color: rgb(0,0,0); /* Black fallback color */
background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}
/* Position the content inside the overlay */
.overlay-content {
position: relative;
top: 25%; /* 25% from the top */
width: 100%; /* 100% width */
text-align: center; /* Centered text/links */
margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}
.overlay div {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block; /* Display block instead of inline */
transition: 0.3s; /* Transition effects on hover (color) */
}
/* Position the close button (top right corner) */
.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
color: white;
}