-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (68 loc) · 1.13 KB
/
style.css
File metadata and controls
83 lines (68 loc) · 1.13 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
html, body {
font-family: 'Open Sans', 'sans-serif';
font-size: 14px;
margin: 0;
padding: 0;
min-height: 180px;
width: 384px;
}
h1 {
font-family: 'Menlo', monospace;
font-size: 22px;
font-weight: 400;
margin: 0;
color: #2f5876;
}
a:link, a:visited {
color: #000;
outline: 0;
text-decoration: none;
}
img {
width: 30px;
}
.model-header {
align-items: center;
border-bottom: 0.5px solid #dadada;
}
.model-content {
padding: 0 22px;
}
.model-icons {
border-top: 0.5px solid #dadada;
height: 50px;
width: 100%;
}
.logo {
padding: 16px;
display: flex;
align-items: center;
}
.logo-icon {
vertical-align: text-bottom;
margin-right: 12px;
}
.flex-container {
display: flex;
justify-content: space-between;
padding: 10px 22px;
}
.flex {
opacity: 1;
transition: opacity 0.25s ease-in-out;
width: 120px;
}
.flex:hover {
opacity: 0.4;
}
.flex .fa-brands {
font-size: 35px;
width: 70px;
color: #2f5876
}
.logo img {
width: 70px;
margin-right: 8px;
border-radius: 50%;
border: 0.1px solid #2f5876;
}