-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdepression.css
More file actions
88 lines (76 loc) · 1.44 KB
/
depression.css
File metadata and controls
88 lines (76 loc) · 1.44 KB
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
* {
box-sizing: border-box;
}
body {
font-family: Tahoma;
}
/* Style the header */
h2 {
width: 100%;
height: 100px;
background-color:#748faf;
padding: 30px;
text-align: center;
font-size: 35px;
color: whitesmoke;
font-family: Impact;
}
/* question */
h3 {
font-family: Tahoma;
font-weight: bold;
font-size: 25px;
}
/* answer button */
.reply{
width: 100%;
background: whitesmoke;
padding: 2.5px;
color: #31456b;
font-size: 30px;
border-width:3px;
border-radius: 12px;
border-style:solid;
border-color:#748faf;
}
p {
font-family: Tahoma;
font-size: 30px;
}
a{
text-decoration: none;
color: white;
font-family: "Arial Narrow";
font-size: 25px;
}
/* Style the Home button */
nav {
width: 30%;
background: #748faf;
position: center;
margin: 0 35% 0 35%;
border-radius: 12px;
}
nav ul {
list-style-type: none;
text-align: center;
font-size: 35px;
margin: 0;
padding: 0;
}
nav ul li {
margin: 0;
padding: 0;
display: inline-block;
text-align: center;
}
nav:hover{
background-color: #c2cede;
}
/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
nav, article {
width: 100%;
height: auto;
}
}