App.css 1.51 KB
Newer Older
Spark's avatar
layouut    
Spark committed
1
2
3
4
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
  font-family: "Noto Sans KR", sans-serif !important;
5

Spark's avatar
Spark committed
6
}
7

Spark's avatar
Spark committed
8
9
10
.a:hover {
    color: white;
}
11
12
13
14
15
16
17

.btn-primary:active {
  outline: white !important;
  border-color: white !important;
}

.card .card-title {
18
19
20
21
22
23
24
  color: rgb(70, 70, 70);
  font-size: 1.5em;
}

.card .card-subtitle {
  color: rgb(129, 129, 129);
  font-size: 0.8em;
Spark's avatar
Spark committed
25
26
27
28
29
30
31
32
33
34
}

.form-group .form-control {
  border-radius: 40px;
}
#formbtn {
  width: 100%;
  border-radius: 40px;
  background-color: rgb(110, 189, 142);
  border-color: ivory;
35
  color: white;
Spark's avatar
Spark committed
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
}

#logpng {
  width: 25px;
  height: auto;
  margin-right: 1em;

}

#socialLink {
  padding: 0.5em;
  margin: 0.5em;
  height: 2.5em;
  color: gray;
  font-size: 10px;
  width: fit-content;
Spark's avatar
layouut    
Spark committed
52
53
}

Spark's avatar
layout    
Spark committed
54
55
@media (max-width: 767.98px) { 
  body {
56
    padding: 30px;
Spark's avatar
layout    
Spark committed
57
58
59
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
Spark's avatar
layouut    
Spark committed
60

Spark's avatar
tsx    
Spark committed
61
  }
Spark's avatar
layout    
Spark committed
62
63
64
65
  .container-fluid {
    max-width: 480px !important;
  }
  
Spark's avatar
Spark committed
66
  #stickyy {
67
68
69
70
71
72
    max-width: 400px;
  }

  #contour {
    padding: 10px;
    color: rgba(195, 195, 195, 0.753);
Spark's avatar
Spark committed
73
74
  }
  
Spark's avatar
layout    
Spark committed
75
 }
Spark's avatar
tsx    
Spark committed
76

Spark's avatar
layout    
Spark committed
77
78
79
80
81
82
@media (min-width: 768px) {
  body {
    padding: 30px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
Spark's avatar
layouut    
Spark committed
83

Spark's avatar
layout    
Spark committed
84
  }
Spark's avatar
layouut    
Spark committed
85

Spark's avatar
layout    
Spark committed
86
  .container-fluid {
Spark's avatar
Spark committed
87
    max-width: 1000px !important;
Spark's avatar
tsx    
Spark committed
88
  }
Spark's avatar
layout    
Spark committed
89
90
  .container-fluid .row #stickyy {
    position: sticky !important;
Spark's avatar
Spark committed
91
92
93
94
    position: -webkit-sticky; 
    top: 40px;
    width: fit-content;
    height: fit-content;
95
96
97
    max-width: 300px;

  }
Spark's avatar
Spark committed
98

99
100
  #contour {
    display: none;
Spark's avatar
tsx    
Spark committed
101
  }
Spark's avatar
layout    
Spark committed
102
103

 }