-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
152 lines (151 loc) · 3.72 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.realBody{
display: flex;
flex-direction: column;
background-color: rgb(25, 25, 25);
height: 99.5vh;
width: 100.5%;
border: 3px solid rgb(0, 200, 255);
margin: -0.5%;
}
.rounding{
width: 10%;
height: 300px;
margin: 0.5%;
border-radius: 10px;
transition: all linear 0.5s;
text-align: center;
font-weight: bolder;
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: center;
}
.imgAdjust{
width: 100%;
height: 60%;
image-rendering: optimizeSpeed;
border-radius: 2.5px;
box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
}
.behind{
font-size: 165%;
margin-top: -23.5%;
}
.texting{
margin: 1.25%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border-radius: 5px;
}
.protagonist{
background: linear-gradient(transparent,rgba(255, 255, 255, 0.125),transparent);
height: 100%;
display: flex;
justify-content: space-evenly;
flex-direction: row;
}
.dsgn{
background-color: rgb(0, 128, 255);
width: 100%;
height: 200px;
color: white;
text-align: center;
font-size: xx-large;
font-weight: bolder;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
transition: all linear 0.5s;
}
.dsgn:hover{
box-shadow: 0px 0px 10px 2px white;
text-shadow: 0px 0px 12px white;
}
.top{
margin-bottom: 5%;
}
.bottom{
margin-top: 22.75%;
}
.cyan{
transition: all linear 0.25s;
background-color: rgb(0, 217, 255);
color: rgb(0, 153, 255);
}
.cyan:hover{
box-shadow: 0px 0px 30px 0.1px rgb(0, 206, 206);
text-shadow: 0px 0px 12px white;
}
.fog{
transition: all linear 0.5s;
box-shadow: 0px 0px 25px 0.5px rgb(128, 128, 128);
background-color: rgba(255, 255, 255, 0.5);
color: white;
}
.fog:hover{
box-shadow: 0px 0px 50px 2.5px rgb(209, 209, 209);
text-shadow: 0px 0px 12px rgb(255, 255, 255);
}
.green{
transition: all linear 0.25s;
background-color: black;
color: greenyellow;
}
.green:hover{
box-shadow: 0px 0px 30px 0.1px rgb(0, 255, 34);
text-shadow: 0px 0px 12px rgb(0, 255, 42);
}
.basic{
transition: all linear 0.25s;
background-color: rgb(150, 150, 150);
color: rgb(83, 83, 83);
}
div.basic:hover{
box-shadow: 0px 0px 30px 0.1px rgb(107, 107, 107);
}
.orange{
transition: all linear 0.25s;
background-color: rgb(255, 145, 0);
color: rgb(255, 255, 255);
}
.orange:hover{
box-shadow: 0px 0px 30px 0.1px rgb(255, 174, 0);
text-shadow: 0px 0px 12px rgb(255, 187, 0);
}
.yellow{
transition: all linear 0.25s;
background-color: rgb(228, 213, 0);
color: rgb(255, 255, 255);
}
.yellow:hover{
box-shadow: 0px 0px 30px 0.1px rgb(216, 212, 0);
text-shadow: 0px 0px 12px rgb(240, 255, 103);
}
.darkcyan{
transition: all linear 0.25s;
background-color: rgb(0, 124, 161);
color: rgb(255, 255, 255);
}
.darkcyan:hover{
box-shadow: 0px 0px 30px 0.1px rgba(0, 102, 235, 0.589);
text-shadow: 0px 0px 12px rgb(103, 194, 255);
}
.red{
transition: all linear 0.25s;
background-color: rgb(228, 0, 0);
color: rgb(255, 255, 255);
}
.red:hover{
box-shadow: 0px 0px 30px 0.1px rgb(255, 0, 0);
text-shadow: 0px 0px 12px rgb(255, 103, 103);
}
.UT{
font-family: 'Press Start 2P',cursive;
font-size: 100%;
border-radius: 0;
transition: all linear 0.05s;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
}
h2.UT:hover{
box-shadow: 0px 0px 30px 0.1px rgba(0, 0, 0, 0.349);
color: rgb(255, 255, 0);
text-shadow: 0px 0px 12px rgb(255, 255, 0);
}