forked from flockflair-dbit/acm-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks-style.css
More file actions
94 lines (82 loc) · 1.79 KB
/
Copy pathlinks-style.css
File metadata and controls
94 lines (82 loc) · 1.79 KB
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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");
* {
outline: none;
box-sizing: border-box;
}
html {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
}
:root {
--body-font: "Inter", sans-serif;
--theme-bg: #1f1d2b;
--body-color: #808191;
--button-bg: #353340;
--border-color: rgb(128 129 145 / 24%);
--video-bg: #252936;
--delay: 0s;
}
body {
font-family: var(--body-font);
color: var(--body-color);
background-image: url(https://images.unsplash.com/photo-1520045892732-304bc3ac5d8e?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1950&q=80);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-blend-mode: color-dodge;
background-color: rgba(18, 21, 39, 0.86);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.OuterBox {
background-color: var(--theme-bg);
border-radius: 20px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
margin: auto;
padding: 10% auto;
padding-bottom: 20px;
width: 90%;
}
h1 {
padding: 30px 10px 10px 10px;
}
.linkField {
display: flex;
justify-content: center;
align-items: center;
}
.linkButton {
position: relative;
background-color: var(--button-bg);
border-radius: 10px;
overflow: hidden;
transition: 0.4s;
min-width: 300px;
width: 40%;
padding: 5px 10px;
border: none;
margin: 20px 5px;
color: azure;
}
.linkButton:hover {
background-color: var(--body-color);
color: var(--theme-bg);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
color: azure;
}
.linkField a {
text-decoration: none;
color: azure;
background-color: none;
}
.socialIcon:hover{
color: #bbb;
}
.socialIcon {
color: #808191;
}