-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon_style.css
More file actions
55 lines (51 loc) · 1.18 KB
/
common_style.css
File metadata and controls
55 lines (51 loc) · 1.18 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
body {
font-family: Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif;
}
#foreground {
background-color: #f7f7f7;
margin-left: auto;
margin-right: auto;
width: 50%;
border: 2px solid black;
border-radius: 50px;
margin-top: 20px;
display: flex;
justify-content: center;
margin-bottom: 20px;
}
#content {
display: flex;
flex-direction: column;
align-items: center;
width: 80%;
margin-top: 0;
margin-bottom: 50px;
}
#overview_button {
display: inline-block;
outline: none;
cursor: pointer;
font-size: 14px;
line-height: 1;
border-radius: 500px;
transition-property: background-color, border-color, color, box-shadow, filter;
transition-duration: .3s;
border: 1px solid transparent;
letter-spacing: 2px;
min-width: 160px;
text-transform: uppercase;
white-space: normal;
font-weight: 700;
text-align: center;
padding: 16px 25px 18px;
color: #616467;
box-shadow: inset 0 0 0 2px #616467;
background-color: transparent;
height: 48px;
margin-top: 40px;
margin-bottom: 40px;
}
#overview_button:hover {
color: #fff;
background-color: #616467;
}