forked from cmda-minor-web/web-app-from-scratch-2223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqt.css
113 lines (91 loc) · 1.52 KB
/
qt.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
*, *::after, *::before {
box-sizing: border-box;
}
body {
width: 100%;
height:100vh;
background-color: #F8C8DC;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
header{
background-color: #E0B0FF;
position: fixed;
height: 8vmin;
/* width: 200vmin; */
padding: 0;
top: 0;
left: 0;
right: -100px;
}
nav ul{
display: grid;
grid-template-columns: 5em 5em;
grid-template-rows: .5em;
gap: 8em;
}
nav ul li{
list-style: none;
position: relative;
left: 65vmin;
}
nav ul li a{
text-decoration: none;
color: black;
font-weight: bold;
font-size: 25px;
}
nav ul li a:hover{
color: rgb(219,112,147);
background-color: rgba(255, 255, 255, 0.5) ;
}
.js-empty p{
font-size: 25px;
font-weight: bold;
}
h1{
font-size: 1.5em;
font-weight: normal;
}
h2{
font-size: 1.5em;
font-weight: bold;
}
h3{
font-size: 25px;
font-weight: bold;
}
#home, #about{
height: fit-content;
width: 80vmin;
position: absolute;
padding: 0;
transform: translate(60% , 150% );
}
#home{
top: -5%;
left: .1%;
}
#about{
top: -5%;
left: -.1%;
}
img{
width:100vmin;
position: absolute;
left: 22%;
top: 15%;
}
button{
position: relative;
left: 50%;
width : 280px;
height : 80px;
padding: 50px;
border : solid 3px #000 ;
border-radius : 40px ;
background-color: rgb(219,112,147) ;
transform: translate( -60% , 80% );
}
.hide {
display: none;
}