-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (90 loc) · 1.88 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
body{
margin: 0px;
overflow-x: hidden;
}
::-webkit-scrollbar {
display: none;
}
.title{
font-size: 200px;
text-align: center;
margin-top: 200px;
font-weight: 900;
font-family: "Montserrat", sans-serif;
color: rgba(0, 0, 0, 0.708);
}
.download{
width: 120px;
height: 50px;
font-size: 20px;
border-radius: 10px;
border: none;
background-color: turquoise;
transition: background-color 2s ease;
color: white
}
.description{
color: white;
font-family: "Montserrat", sans-serif;
}
.download:hover{
background-color: rgb(2, 164, 2);
}
.downloadholder{
text-align: center;
text-align: center;
margin-top: 85vh;
}
.card{
position: absolute;
z-index: 1;
width: 700px;
height: 400px;
border-radius: 30px;
background-size: 750px; /* Adjust as needed */
background-position:-1px; /* Adjust as needed */
z-index: 1;
top: 5%;
}
.solorized{
background-image: url("./README_files/terminalAppSolorizedDarkTheme.png");
transform: rotate(0deg);
left: 20%;
z-index: 20;
box-shadow: 10px 10px 10px black, -10px -5px 10px black;
}
.cmd{
background-image: url("./README_files/cmd.png");
background-size: 800px;
}
.terminal{
background-image: url("./README_files/TerminalAppCustomTheme.png");
left: 70%;
background-size: 780px;
}
.titleholder{
position: absolute;
top: 11%;
left: 50%;
transform: translate(-50%,-20%);
z-index: 1000;
width: 100%;
text-align: center;
padding: 0px;
}
.btn{
width: fit-content;
padding: 3px;
text-align: center;
border-radius: 5px;
border: 1px solid black;
background-color: rgb(228, 225, 225);
}
.widget{
width: 100%;
text-align: center;
margin-top: 5px;
}
p{
font-size: 15px;
}