-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (101 loc) · 2.25 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@font-face {
font-family : "Extreme";
src : url("a.ttf");
}
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
font-family : Helvetica;
}
header {
background-color : #ffffff;
box-shadow: 0px 0.5vh 3px 1px rgba(41,41,41,0.5);
min-height : 8vmin;
height : 10vh;
max-height : 14vmin;
width : 100%;
position : absolute;
z-index : 1000;
display : flex;
flex-direction : row;
align-items : center;
padding-left : 1vmin;
box-sizing : border-box;
justify-content : space-between;
}
#logo {
height : clamp(6vmin, 8vh, 12vmin);
width : auto;
transform : rotate(-5deg);
}
.connection {
height : clamp(6vmin, 8vh, 12vmin);
width : 20%;
padding-right : 1vmin;
padding-left : 1vmin;
display : flex;
flex-direction : column;
align-items : center;
justify-content : center;
border-left: 4px dotted rgba(147, 147, 147, 0.5);
}
.connection ul {
width : 100%;
display : flex;
flex-direction : row;
align-items : center;
justify-content : space-between;
}
.connection p {
text-align : center;
}
header p {
display: flex;
text-align: center;
font-size : 2vmin;
}
.connection ul li {
list-style-type : none;
width : 50%;
}
.connection ul li a{
display : flex;
padding : 0.5vmin;
margin : 0.5vmin;
text-align : center;
border: 2px solid black;
border-radius: 40px;
justify-content : center;
border-color : black;
color : black;
transition : border-color 0.4s, color 0.4s;
}
.connection ul li a:hover {
border-color : #224a95;
color : #efc600;
transition : border-color 0.4s, color 0.4s;
}
.connection ul li a, .connection p {
padding-left : 0.5vmin;
font-size : 2vmin;
color : black;
text-decoration : none;
}
#logoutli {
border : none !important;
}
#connected ul li a img {
display : flex;
self-align : center;
height : clamp(3vmin, 4vh, 6vmin);
width : auto;
transform : scale(1);
transition : transform 0.5s;
}
#connected ul li a img:hover {
transform : scale(1.1);
transition : transform 0.5s;
}