-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
121 lines (97 loc) · 1.74 KB
/
styles.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
115
116
117
118
119
120
121
:root {
--dark: #770077;
}
@font-face {
font-family: 'Font Name';
src: url('Fonts/PT_Mono/PTMono-Regular.ttf') format('truetype'),
url('Fonts/PT_Mono/PTMono-Regular.woff') format('woff'),
url('Fonts/PT_Mono/PTMono-Regular.woff2') format('woff2');
}
body {
background-color: var(--dark);
font-family: 'PT Mono', monospace;
font-size: larger;
}
.Header {
background-color: magenta;
border-radius: 20px;
margin: 20px;
padding: 50px;
display: flex;
justify-content: space-between;
color: white;
font-size: larger;
}
.Logo {
background-color: var(--dark);
border-radius: 15px;
color: white;
display: flex;
padding-right: 10px;
align-items: center;
user-select: none;
text-decoration: none;
font-size: large;
transition-duration: 0.2s;
}
.Logo:hover {
transform: matrix(1.2, -0.1, 0.1, 1.2, 0, 0);
}
.Icon {
width: 100px;
margin-right: 10px;
}
.HeaderButtons {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.HeaderButtons button {
background-color: var(--dark);
border-style: hidden;
border-radius: 15px;
height: 70px;
padding-left: 20px;
padding-right: 20px;
cursor: pointer;
color: white;
font-family: 'PT Mono', monospace;
font-size: larger;
transition-duration: 0.2s;
}
.Content {
background-color: magenta;
border-radius: 20px;
margin: 20px;
}
@media (orientation:portrait) {
body {
font-size: small;
}
.Logo {
background-color: magenta;
padding-right: 0%;
font-size: 0%;
}
.icon {
margin-right: 0%;
width: 50px;
}
.Header {
border-radius: 5px;
margin: 5px;
padding: 5px;
}
.HeaderButtons button {
border-radius: 5px;
height: 35px;
padding-left: 5px;
padding-right: 5px;
}
.Content {
background-color: magenta;
border-radius: 5px;
margin: 5px;
}
}